old-techblog/assets/main.scss

62 lines
866 B
SCSS
Raw Normal View History

2017-12-29 13:27:50 +00:00
---
---
@import 'minima';
2018-01-10 07:25:20 +00:00
@import url('https://fonts.googleapis.com/css?family=Archivo+Black|Tenor+Sans|Ubuntu+Mono');
2017-12-29 13:27:50 +00:00
html, body, div, p {
2018-01-10 07:25:20 +00:00
font-family: 'Tenor'
}
body {
font-size: 17px;
2017-12-29 13:27:50 +00:00
}
h1, h2, h3, h4, h5, h6 {
2018-01-10 07:25:20 +00:00
font-family: 'Archivo Black'
2017-12-29 13:27:50 +00:00
}
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 {
2018-01-10 07:25:20 +00:00
font-family: 'Archivo Black';
2017-12-29 13:27:50 +00:00
color: #fff;
}
.site-nav {
.page-link, .page-link:visited {
2018-01-10 07:25:20 +00:00
font-family: 'Archivo Black';
2017-12-29 13:27:50 +00:00
color: #fff;
@include media-query($on-palm) {
color: #000;
}
}
}
}
2018-01-10 07:25:20 +00:00
.page-content {
background: #efefef;
padding-top: 0px;
}
.page-content > .wrapper {
padding-top: 30px;
background: #fff;
}
2017-12-29 13:27:50 +00:00
img.profile {
width: 400px;
}
2018-01-10 07:25:20 +00:00