48 lines
828 B
CSS
48 lines
828 B
CSS
body {
|
|
font-family: 'Slabo27px';
|
|
background-color: white;
|
|
}
|
|
|
|
h1, h2, h3, h4, h5, h6 {
|
|
font-family: 'Yanone Kaffeesatz';
|
|
font-weight: bold;
|
|
letter-spacing: 4px;
|
|
}
|
|
|
|
.remark-code, .remark-inline-code {
|
|
font-family: 'Ubuntu Mono';
|
|
font-size: 18px;
|
|
}
|
|
|
|
.remark-slide-content {
|
|
font-size: 35px;
|
|
}
|
|
|
|
ol li {
|
|
margin-top: 15px;
|
|
}
|
|
|
|
.remark-slide-content:before {
|
|
content: "";
|
|
position: absolute;
|
|
width: 300px;
|
|
height: 300px;
|
|
top: -10%;
|
|
left: 75%;
|
|
opacity: 0.1;
|
|
background: url(/images/rust.png) 0 0 no-repeat;
|
|
background-size: 300px 300px;
|
|
-webkit-transform: rotate(30deg);
|
|
-moz-transform: rotate(30deg);
|
|
-ms-transform: rotate(30deg);
|
|
-o-transform: rotate(30deg);
|
|
transform: rotate(30deg);
|
|
}
|
|
|
|
a {
|
|
color: blue;
|
|
}
|
|
|
|
a:visited {
|
|
color: blue;
|
|
}
|