31 lines
450 B
CSS
31 lines
450 B
CSS
|
body {
|
||
|
width: 250px;
|
||
|
}
|
||
|
|
||
|
table, td, th {
|
||
|
border: 1px solid black;
|
||
|
}
|
||
|
table {
|
||
|
border-collapse: collapse;
|
||
|
width: 95%;
|
||
|
}
|
||
|
td {
|
||
|
height: 30px;
|
||
|
text-align: center;
|
||
|
vertical-align: center;
|
||
|
width: 50%;
|
||
|
}
|
||
|
.success {
|
||
|
background-color: #dff0d8;
|
||
|
}
|
||
|
.danger {
|
||
|
background-color: #f2dede;
|
||
|
}
|
||
|
.loading {
|
||
|
background-color: #fff2e6;
|
||
|
}
|
||
|
.title {
|
||
|
text-align: center;
|
||
|
font-weight: bold;
|
||
|
font-size: 18px;
|
||
|
}
|