website/assets/css/main.scss

60 lines
708 B
SCSS
Raw Normal View History

2016-03-11 04:20:09 +01:00
---
---
2016-03-14 04:43:55 +01:00
@import "reset";
2016-03-11 04:20:09 +01:00
@import "config";
2016-03-14 05:08:18 +01:00
@import "header";
@import "post";
@import "about";
2016-03-11 04:20:09 +01:00
body {
color: $color-primary;
background: $color-background;
}
2016-03-14 05:08:18 +01:00
h1, h2 {
margin-bottom: 5px;
}
a {
color: #1A0DAB;
text-decoration: none;
&:visited {
color: #1A0DAB;
text-decoration: none;
}
&:hover {
color: #1A0DAB;
text-decoration: underline;
}
&:active {
color: #1A0DAB;
text-decoration: none;
}
}
2016-03-14 04:43:55 +01:00
// WRAPPER
.wrapper {
2016-03-14 05:08:18 +01:00
max-width: 666px;
margin: auto;
padding: 30px;
2016-03-14 04:43:55 +01:00
}
// PORTFOLIO
.portfolio {
2016-03-14 05:08:18 +01:00
margin-top: 20px;
2016-03-14 04:43:55 +01:00
h1 {
font-size: 24px;
}
}
// BLOG
.blog {
2016-03-14 05:08:18 +01:00
margin-top: 20px;
2016-03-14 04:43:55 +01:00
h1 {
font-size: 24px;
}
}