website/assets/css/main.scss

98 lines
1.3 KiB
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
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 05:35:46 +01:00
ul {
margin-top: 5px;
li {
margin-top: 5px;
}
}
2016-03-14 04:43:55 +01:00
.wrapper {
2016-03-14 06:34:30 +01:00
max-width: 600px;
margin: auto;
2016-03-14 06:44:00 +01:00
padding: 15px;
@media screen and (min-width: 570px) {
padding: 30px;
2016-03-14 06:38:46 +01:00
}
2016-03-14 04:43:55 +01:00
}
2016-03-14 06:16:01 +01:00
.main {
2016-03-14 06:34:30 +01:00
margin-bottom: 30px;
2016-03-14 06:44:00 +01:00
padding-bottom: 15px;
border-bottom: 1px solid #000;
2016-03-14 06:34:30 +01:00
@media screen and (min-width: 570px) {
display: flex;
justify-content: space-between;
align-items: baseline;
2016-03-14 06:44:00 +01:00
padding-bottom: 5px;
2016-03-14 06:34:30 +01:00
}
2016-03-14 05:35:46 +01:00
h1 {
font-size: 36px;
2016-03-14 06:34:30 +01:00
margin-right: 20px;
2016-03-14 05:35:46 +01:00
}
ul {
2016-03-14 06:34:30 +01:00
margin-top: 10px;
2016-03-14 05:35:46 +01:00
li {
display: inline;
margin-right: 5px;
}
}
}
.blog {
2016-03-14 04:43:55 +01:00
h1 {
2016-03-14 06:16:01 +01:00
font-size: 26px;
2016-03-14 04:43:55 +01:00
}
}
2016-03-14 05:35:46 +01:00
.post {
2016-03-14 06:16:01 +01:00
h1 {
font-size: 26px;
}
2016-03-14 05:35:46 +01:00
}
2016-03-14 06:16:01 +01:00
.portfolio {
h1 {
font-size: 26px;
}
2016-03-14 05:35:46 +01:00
}
2016-03-14 06:16:01 +01:00
.about {
2016-03-14 04:43:55 +01:00
h1 {
2016-03-14 06:16:01 +01:00
font-size: 26px;
2016-03-14 04:43:55 +01:00
}
}