diff options
| author | la-ninpre <leobrekalini@gmail.com> | 2020-11-12 02:14:04 +0300 |
|---|---|---|
| committer | la-ninpre <leobrekalini@gmail.com> | 2020-11-12 02:14:04 +0300 |
| commit | 7b46213ebebd38f1b2f55df0b1efde88059c814d (patch) | |
| tree | cbc1678276681965792fdce6e68426f395b4aff5 /_sass | |
| parent | 9f6f9ffe4ca074d0eaa9f9897346ebc70b83877b (diff) | |
| download | aaoth.xyz-7b46213ebebd38f1b2f55df0b1efde88059c814d.tar.gz aaoth.xyz-7b46213ebebd38f1b2f55df0b1efde88059c814d.zip | |
add post functionality
this is not for real like blog posts, but for my telegram ones. they are
small and may be just written in plain on one page. of course, it'll
make this page too long, but to that time i'll find how to deal with it.
Diffstat (limited to '_sass')
| -rw-r--r-- | _sass/main.scss | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/_sass/main.scss b/_sass/main.scss index 61b9feb..70c2b3a 100644 --- a/_sass/main.scss +++ b/_sass/main.scss @@ -60,6 +60,24 @@ h1, h2, h3, h4, h5, h6 { color: $color-main-blue; } +.post { + padding: 1em; + margin: 1em; + background: #1f1f1f; + border-radius: 25px 25px 25px 0px; + word-wrap: break-word; + p { + img { + max-width: 100% + } + } +} + +audio { + width: 100%; + border-radius: 25px; +} + footer { border-top: $border-main; text-align: center; |
