25 lines
256 B
CSS
25 lines
256 B
CSS
table {
|
|
width: 100%;
|
|
text-align: left;
|
|
}
|
|
|
|
caption {
|
|
font-weight: bold;
|
|
}
|
|
|
|
tbody > tr:nth-of-type(even) {
|
|
background-color: mediumturquoise;
|
|
}
|
|
|
|
tr :nth-child(1) {
|
|
text-align: right;
|
|
}
|
|
|
|
tr :nth-child(4) {
|
|
width: 20%;
|
|
}
|
|
|
|
#euler-badge {
|
|
float: right;
|
|
}
|