diff options
| author | Valentin Popov <valentineus@gmail.com> | 2018-01-06 15:12:53 +0300 | 
|---|---|---|
| committer | Valentin Popov <valentineus@gmail.com> | 2018-01-06 15:12:53 +0300 | 
| commit | db5494dff0b2b8b344f37a2fa1d2f8b9c450098f (patch) | |
| tree | e4fc2d8c97abe0bd28a0527de6696025f6699b0d /_sass/_post.scss | |
| download | popov.link-db5494dff0b2b8b344f37a2fa1d2f8b9c450098f.tar.xz popov.link-db5494dff0b2b8b344f37a2fa1d2f8b9c450098f.zip | |
Initial commit
Diffstat (limited to '_sass/_post.scss')
| -rw-r--r-- | _sass/_post.scss | 51 | 
1 files changed, 51 insertions, 0 deletions
| diff --git a/_sass/_post.scss b/_sass/_post.scss new file mode 100644 index 0000000..08949f3 --- /dev/null +++ b/_sass/_post.scss @@ -0,0 +1,51 @@ +.post { +    padding: 3rem 0; + +    &-info { +        color: $default-tint; +        font-family: $serif-secondary; +        letter-spacing: 0.5px; +        text-align: center; + +        span { +            font-style: italic; +        } +    } + +    &-title { +        color: $default-shade; +        font-family: $sans-serif; +        font-size: 4rem; +        margin: 1rem 0; +        text-align: center; +    } + +    &-line { +        border-top: 0.4rem solid $default-shade; +        display: block; +        margin: 0 auto 3rem; +        width: 4rem; +    } + +    p { +        margin: 0 0 1rem; +        text-align: justify; +    } + +    a:hover { +        text-decoration: underline; +    } + +    img { +        margin: 0 auto 0.5rem; +    } + +    img+em { +        color: $default-tint; +        display: block; +        font-family: $sans-serif; +        font-size: 0.9rem; +        font-style: normal; +        text-align: center; +    } +} | 
