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

40 lines
781 B
Plaintext
Raw Normal View History

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