63 lines
964 B
SCSS
63 lines
964 B
SCSS
// CSS heavily borrowed from https://github.com/denysvitali/thebestmotherfuckingwebsite
|
|
|
|
$bodybgColor: #f2f2f2;
|
|
$bodyTextColor: #444444;
|
|
|
|
$linkColor: #07A;
|
|
$linkVisitedColor: #941352;
|
|
|
|
html {
|
|
background-color: $bodybgColor;
|
|
}
|
|
|
|
body{
|
|
font-family: "Open Sans", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
|
|
color: $bodyTextColor;
|
|
font-size: 16px;
|
|
margin: 2em auto;
|
|
max-width: 800px;
|
|
padding: 1em;
|
|
line-height: 1.4;
|
|
text-align: justify;
|
|
}
|
|
|
|
a{
|
|
color: $linkColor;
|
|
|
|
&:visited{
|
|
color: $linkVisitedColor;
|
|
}
|
|
}
|
|
|
|
.noselect{
|
|
-webkit-touch-callout: none;
|
|
-webkit-user-select: none;
|
|
-khtml-user-select: none;
|
|
-moz-user-select: none;
|
|
-ms-user-select: none;
|
|
user-select: none;
|
|
}
|
|
|
|
|
|
small{
|
|
font-size: 0.4em;
|
|
}
|
|
|
|
p.st{
|
|
margin-top: -1em;
|
|
}
|
|
|
|
ul{
|
|
li{
|
|
img{
|
|
height: 1em;
|
|
}
|
|
}
|
|
}
|
|
|
|
@media screen and (max-width: 500px) {
|
|
body{
|
|
text-align: left;
|
|
}
|
|
}
|