2019-11-06 23:15:43 +03:00
|
|
|
@import "colors";
|
|
|
|
|
|
|
|
@aal-font-size: 18px;
|
|
|
|
|
|
|
|
// This gives us more leeway for narrower displays.
|
|
|
|
// We are not restricting zooms, so no issues, and 14px
|
|
|
|
// equivalent is the default font size anyway.
|
|
|
|
#screen-xs-max({
|
|
|
|
@aal-font-size: 16px;
|
|
|
|
html, html>body {font-size: @aal-font-size;}
|
|
|
|
});
|
|
|
|
|
|
|
|
body {
|
|
|
|
font-family: "Noto Serif", "DejaVu Serif", serif;
|
|
|
|
}
|
|
|
|
|
|
|
|
h1, h2, h3, h4, h5, h6 {
|
|
|
|
font-family: "Open Sans", "DejaVu Sans", sans-serif;
|
|
|
|
font-weight: 300;
|
|
|
|
}
|
|
|
|
|
|
|
|
a {
|
|
|
|
color: @color-link;
|
|
|
|
text-decoration: underline;
|
|
|
|
&:hover, &:active {
|
|
|
|
outline: 0;
|
|
|
|
}
|
|
|
|
&:focus, &:hover {
|
|
|
|
color: @color-link-active;
|
|
|
|
text-decoration: underline;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
pre {
|
|
|
|
background-color: #eee;
|
|
|
|
padding: @gutter / 2;
|
|
|
|
overflow: auto;
|
|
|
|
}
|
2020-04-04 04:53:19 +03:00
|
|
|
|
|
|
|
table.with-links {
|
|
|
|
tbody {
|
|
|
|
tr:hover {
|
|
|
|
background-color: #eeeeee;
|
|
|
|
}
|
|
|
|
|
|
|
|
td {
|
|
|
|
position: relative;
|
|
|
|
}
|
|
|
|
|
|
|
|
td a:before {
|
|
|
|
content: "";
|
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
right: 0;
|
|
|
|
bottom: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
td:not(:last-child) a:before {
|
|
|
|
right: -1px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|