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

37 lines
747 B
Plaintext
Raw Normal View History

2019-08-10 04:28:35 +00:00
//
// Citizen - Wikitable Styles
// https://starcitizen.tools
//
table.wikitable {
background-color: transparent;
color: @base-20;
border: 0;
tr {
vertical-align: top;
th {
2019-08-13 01:36:10 +00:00
padding: @margin-side / 2 @margin-side @margin-side / 2 0;
2019-08-10 04:28:35 +00:00
border: 0;
2019-08-10 14:13:32 +00:00
border-top: 2px solid currentColor;
2019-08-10 04:28:35 +00:00
color: @base-30;
background-color: transparent;
font-size: @content-caption-size;
letter-spacing: 1px;
text-transform: uppercase;
text-align: left;
}
td {
border: 0;
border-bottom: 1px solid @base-80;
padding: @margin-side / 2 @margin-side @margin-side / 2 0;
2019-08-10 14:13:32 +00:00
font-size: @content-monospace-size;
2019-08-10 04:28:35 +00:00
}
&:hover {
background-color: @base-90;
}
}
}