63 lines
597 B
CSS
63 lines
597 B
CSS
body {
|
|
background-color: #000;
|
|
font-family: "Zilla Slab";
|
|
color: #FFFF;
|
|
}
|
|
|
|
a {
|
|
text-decoration: none;
|
|
}
|
|
|
|
a:link{
|
|
color: white;
|
|
}
|
|
|
|
a:visited{
|
|
color: white;
|
|
}
|
|
|
|
a.return{
|
|
font-size: 2.5vw;
|
|
font-weight:bold;
|
|
|
|
}
|
|
|
|
hr
|
|
{
|
|
border-top: 2px dashed white;
|
|
}
|
|
|
|
p.title{
|
|
font-size: 3vw;
|
|
font-weight: bold;
|
|
}
|
|
|
|
article h1{
|
|
font-size: 3vw;
|
|
}
|
|
|
|
article p{
|
|
font-size: 1.5vw;
|
|
}
|
|
|
|
article h2{
|
|
font-size: 1.5vw;
|
|
}
|
|
|
|
article li {
|
|
font-size: 1.5vw;
|
|
}
|
|
|
|
article ul {
|
|
list-style-image: url("/static/assets/bullet.svg")
|
|
}
|
|
|
|
div.post {
|
|
border: 1px solid #fff;
|
|
}
|
|
|
|
h1.htitle{
|
|
text-align: center;
|
|
text-size: 6vw;
|
|
}
|