website/assets/css/main.scss

177 lines
3.0 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-15 01:31:35 +01:00
font-family: 'Inconsolata', ;
font-size: 100%;
2016-03-15 02:04:27 +01:00
font-weight: 400;
2016-03-11 04:20:09 +01:00
}
2016-03-15 05:41:41 +01:00
h1 {
2016-03-14 05:08:18 +01:00
margin-bottom: 5px;
}
2016-03-15 05:41:41 +01:00
p {
font-size: 1em;
line-height: 150%;
}
2016-03-14 05:08:18 +01:00
a {
2016-03-15 03:49:04 +01:00
color: $color-link;
2016-03-14 05:08:18 +01:00
text-decoration: none;
&:visited {
2016-03-15 03:49:04 +01:00
color: $color-link;
2016-03-14 05:08:18 +01:00
text-decoration: none;
}
&:hover {
2016-03-15 03:49:04 +01:00
color: $color-link;
2016-03-14 05:08:18 +01:00
text-decoration: underline;
}
&:active {
2016-03-15 03:49:04 +01:00
color: $color-link;
2016-03-14 05:08:18 +01:00
text-decoration: none;
}
}
2016-03-14 05:35:46 +01:00
ul {
2016-03-15 05:41:41 +01:00
list-style: none;
2016-03-14 05:35:46 +01:00
li {
2016-03-15 05:41:41 +01:00
padding: 5px;
padding-left: 10px;
2016-03-18 05:49:08 +01:00
@media screen and (max-width: $br) {
2016-03-15 05:41:41 +01:00
padding: 10px 0 10px 0;
}
2016-03-14 05:35:46 +01:00
}
}
2016-03-14 04:43:55 +01:00
.wrapper {
2016-03-14 06:34:30 +01:00
max-width: 600px;
margin: auto;
2016-03-15 05:41:41 +01:00
padding: 60px 30px 60px 30px;
2016-03-18 05:49:08 +01:00
@media screen and (max-width: $br) {
2016-03-15 01:31:35 +01:00
padding: 20px;
2016-03-14 06:38:46 +01:00
}
2016-03-14 04:43:55 +01:00
}
2016-03-15 05:41:41 +01:00
.header {
2016-03-15 01:31:35 +01:00
display: flex;
justify-content: space-between;
align-items: baseline;
2016-03-15 02:04:27 +01:00
padding-bottom: 50px;
2016-03-18 05:49:08 +01:00
@media screen and (max-width: $br) {
2016-03-15 01:31:35 +01:00
display: block;
2016-03-14 06:34:30 +01:00
}
2016-03-14 05:35:46 +01:00
h1 {
2016-03-15 01:31:35 +01:00
font-size: 2em;
margin-bottom: 0;
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;
2016-03-15 05:41:41 +01:00
padding: 0;
padding-left: 5px;
2016-03-14 05:35:46 +01:00
}
}
}
2016-03-15 04:08:03 +01:00
.portfolio {
2016-03-15 01:31:35 +01:00
padding-bottom: 30px;
2016-03-14 04:43:55 +01:00
h1 {
2016-03-24 06:41:41 +01:00
font-weight: 700;
2016-03-15 01:31:35 +01:00
font-size: 1.4em;
margin-bottom: 5px;
2016-03-14 04:43:55 +01:00
}
}
2016-03-15 01:31:35 +01:00
.blog {
padding-bottom: 30px;
2016-03-14 06:16:01 +01:00
h1 {
2016-03-24 06:41:41 +01:00
font-weight: 700;
2016-03-15 01:31:35 +01:00
font-size: 1.4em;
margin-bottom: 5px;
2016-03-14 06:16:01 +01:00
}
2016-03-14 05:35:46 +01:00
}
2016-03-15 01:31:35 +01:00
.post {
padding-bottom: 30px;
2016-03-15 02:04:27 +01:00
&__title {
2016-03-15 05:41:41 +01:00
font-size: 1.6em;
2016-03-15 02:04:27 +01:00
font-weight: 700;
2016-03-15 03:49:04 +01:00
text-decoration: underline;
margin-top: 20px;
2016-03-18 05:49:08 +01:00
margin-bottom: 5px;
2016-03-15 02:04:27 +01:00
}
&__date {
2016-03-16 01:34:42 +01:00
font-size: 1em;
2016-03-18 05:49:08 +01:00
font-style: italic;
2016-03-15 02:04:27 +01:00
}
&__content {
2016-03-15 03:49:04 +01:00
padding-top: 40px;
2016-03-15 02:04:27 +01:00
h1 {
2016-03-15 03:49:04 +01:00
font-size: 1.2em;
font-weight: 700;
2016-03-15 03:56:21 +01:00
margin-top: 30px;
2016-03-15 02:04:27 +01:00
margin-bottom: 5px;
}
p {
font-size: 1em;
line-height: 150%;
2016-03-16 01:34:42 +01:00
margin-bottom: 15px;
2016-03-15 02:04:27 +01:00
}
2016-03-18 05:49:08 +01:00
a {
text-decoration: underline;
&:hover {
font-weight: bold;
}
}
2016-03-15 02:04:27 +01:00
strong {
font-weight: 700;
}
em {
font-style: italic;
}
2016-03-15 05:41:41 +01:00
ul {
list-style: circle;
}
2016-03-15 03:49:04 +01:00
img {
margin-top: 10px;
margin-bottom: 10px;
2016-03-18 05:49:08 +01:00
@media screen and (max-width: $br) {
2016-03-15 03:49:04 +01:00
width: 100%;
margin: auto;
}
}
2016-03-14 06:16:01 +01:00
}
2016-03-14 05:35:46 +01:00
}
2016-03-14 06:16:01 +01:00
.about {
2016-03-15 05:41:41 +01:00
&__title {
font-size: 1.6em;
font-weight: 700;
margin-top: 20px;
margin-bottom: 10px;
}
&__content {
margin-top: 20px;
h1 {
font-size: 1.2em;
font-style: italic;
margin-top: 30px;
margin-bottom: 5px;
}
p {
font-size: 1em;
line-height: 150%;
margin-bottom: 10px;
}
}
2016-03-14 04:43:55 +01:00
}