summaryrefslogtreecommitdiff
path: root/sass/style.scss
blob: 1aa7bc41b95a5cf58cdaf1ee0219ae96fedcc49f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
body {
    background-color: #ffffff;
    font-size: 16px;
    line-height: 1.6em;
    padding: 0 1em;
    margin: 0 auto;
    max-width: 750px;
    word-break: break-word;
}

@media screen and (min-width: 750px) {
    body {
        margin-left: calc((100vw - 3em - 750px) / 2);
    }
}

@import "_partial/_header";
@import "_partial/_post";
@import "_partial/_archive";
@import "_partial/_normalize";