Switch to Hugo-based build
This commit is contained in:
parent
21feddaf52
commit
10b809eebd
18 changed files with 257 additions and 0 deletions
62
themes/custom/assets/sass/main.scss
Normal file
62
themes/custom/assets/sass/main.scss
Normal file
|
|
@ -0,0 +1,62 @@
|
|||
// 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;
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue