62 lines
866 B
SCSS
62 lines
866 B
SCSS
---
|
|
---
|
|
|
|
@import 'minima';
|
|
@import url('https://fonts.googleapis.com/css?family=Archivo+Black|Tenor+Sans|Ubuntu+Mono');
|
|
|
|
html, body, div, p {
|
|
font-family: 'Tenor'
|
|
}
|
|
|
|
body {
|
|
font-size: 17px;
|
|
}
|
|
|
|
h1, h2, h3, h4, h5, h6 {
|
|
font-family: 'Archivo Black'
|
|
}
|
|
|
|
pre, code {
|
|
font-family: 'Ubuntu Mono';
|
|
background-color: #efefef;
|
|
}
|
|
|
|
a, a:active, a:visited {
|
|
color: #2d753a;
|
|
}
|
|
|
|
body > header {
|
|
background-color: #000;
|
|
|
|
.site-title, .site-title:visited {
|
|
font-family: 'Archivo Black';
|
|
color: #fff;
|
|
}
|
|
|
|
.site-nav {
|
|
.page-link, .page-link:visited {
|
|
font-family: 'Archivo Black';
|
|
color: #fff;
|
|
|
|
@include media-query($on-palm) {
|
|
color: #000;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
.page-content {
|
|
background: #efefef;
|
|
padding-top: 0px;
|
|
}
|
|
|
|
.page-content > .wrapper {
|
|
padding-top: 30px;
|
|
background: #fff;
|
|
}
|
|
|
|
img.profile {
|
|
width: 400px;
|
|
}
|
|
|