99 lines
2.3 KiB
Plaintext
99 lines
2.3 KiB
Plaintext
html {
|
|
body {
|
|
> header, > footer {
|
|
background: none;
|
|
font-family: serif;
|
|
h1 {
|
|
font-size: 3rem;
|
|
text-align: left;
|
|
}
|
|
p {
|
|
text-indent: inherit;
|
|
&:first-letter {
|
|
font-size: inherit;
|
|
}
|
|
font-style: italic;
|
|
}
|
|
}
|
|
> header {
|
|
border-bottom: black solid thick;
|
|
h1 {
|
|
margin: 1rem;
|
|
}
|
|
}
|
|
> nav {
|
|
display: none;
|
|
}
|
|
> footer {
|
|
color: contrast(@mainColor);
|
|
}
|
|
}
|
|
}
|
|
|
|
main {
|
|
* {
|
|
border-style: none;
|
|
border-color: @mainColorDark;
|
|
border-width: medium;
|
|
}
|
|
section {
|
|
@sectionMargin: 1rem;
|
|
header {
|
|
text-align: center;
|
|
}
|
|
h1, h2 {
|
|
margin: @sectionMargin;
|
|
}
|
|
p {
|
|
margin: @sectionMargin;
|
|
text-indent: @sectionMargin * 2;
|
|
}
|
|
table {
|
|
colgroup:not(:first-child) col:first-child{
|
|
border-left: solid medium;
|
|
}
|
|
thead {
|
|
tr:last-child {
|
|
td, th {
|
|
border-bottom: @mainColorDark solid thick;
|
|
}
|
|
}
|
|
}
|
|
tbody {
|
|
th {
|
|
font-weight: bold;
|
|
text-align: center;
|
|
padding: 1rem 0.5rem;
|
|
}
|
|
th, td {
|
|
padding: 0.5rem;
|
|
border-bottom: solid thin;
|
|
}
|
|
}
|
|
}
|
|
form {
|
|
display: none;
|
|
}
|
|
button {
|
|
display: none;
|
|
}
|
|
footer {
|
|
text-align: right;
|
|
padding: 0;
|
|
p {
|
|
padding: 0.5rem;
|
|
display: inline-block;
|
|
margin: inherit;
|
|
text-indent: inherit;
|
|
&:first-letter {
|
|
font-size: inherit;
|
|
}
|
|
background: @mainColorLight ;
|
|
color: @mainColor ;
|
|
font-style: italic;
|
|
font-size: 85%;
|
|
}
|
|
border-bottom-style: solid;
|
|
}
|
|
}
|
|
} |