antoinemartin.fr/themes/custom/assets/sass/main.scss

64 lines
987 B
SCSS
Raw Normal View History

2022-11-18 23:26:44 +01:00
// 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;
}
ul{
li{
img{
height: 1em;
}
}
}
2022-11-19 00:37:57 +01:00
footer {
margin-top: 4em;
font-size: 12px;
}
2022-11-18 23:26:44 +01:00
@media screen and (max-width: 500px) {
body{
text-align: left;
}
}