mediawiki-skins-Citizen/resources/components/wikitable.less

42 lines
798 B
Plaintext
Raw Normal View History

2019-08-15 17:40:13 +00:00
//
// Citizen - Wikitable Styles
// https://starcitizen.tools
//
table.wikitable {
2019-11-12 20:40:11 +00:00
background-color: transparent;
color: @base-20;
border: 0;
2019-08-15 17:40:13 +00:00
2019-11-12 20:40:11 +00:00
tr {
vertical-align: top;
2019-08-15 17:40:13 +00:00
2019-11-12 20:40:11 +00:00
th {
color: @base-30;
background-color: transparent;
font-size: @content-caption-size;
text-align: left;
}
td {
font-size: @content-monospace-size;
}
2019-08-15 17:40:13 +00:00
2019-11-12 20:40:11 +00:00
th,
td {
padding: @margin-side / 2 @margin-side @margin-side / 2 0;
border: 0;
border-bottom: 1px solid @base-80;
}
&:hover {
background-color: @base-90;
}
2019-08-15 17:40:13 +00:00
}
}
2019-10-07 23:28:16 +00:00
@media only screen and (max-width: @screen2) {
2019-11-12 20:40:11 +00:00
table.wikiatble {
white-space: nowrap;
}
2019-10-07 23:28:16 +00:00
}