diff options
author | Mole Shang <[email protected]> | 2023-05-01 17:11:47 +0800 |
---|---|---|
committer | Mole Shang <[email protected]> | 2023-05-01 17:11:47 +0800 |
commit | 7f3e4a91691cc8dfc1fc0fb74def6a069ea72e27 (patch) | |
tree | 14c94c856562d7ab67aa4a9c1293dffd5ad31d26 /sass | |
parent | 9ac73d2bfce25caa059e0ee53202b81e1ae98103 (diff) | |
download | Seje2-7f3e4a91691cc8dfc1fc0fb74def6a069ea72e27.tar.gz Seje2-7f3e4a91691cc8dfc1fc0fb74def6a069ea72e27.tar.bz2 Seje2-7f3e4a91691cc8dfc1fc0fb74def6a069ea72e27.zip |
sass/_partial/term: new
Diffstat (limited to 'sass')
-rw-r--r-- | sass/_partial/_header_vertical.scss | 6 | ||||
-rw-r--r-- | sass/_partial/_term.scss | 5 | ||||
-rw-r--r-- | sass/_partial/_term_vertical.scss | 5 | ||||
-rw-r--r-- | sass/style.scss | 1 |
4 files changed, 11 insertions, 6 deletions
diff --git a/sass/_partial/_header_vertical.scss b/sass/_partial/_header_vertical.scss index 453c2d8..9cc3281 100644 --- a/sass/_partial/_header_vertical.scss +++ b/sass/_partial/_header_vertical.scss @@ -3,10 +3,4 @@ padding: 0 1em; justify-content: unset; flex-direction: unset; - .blog-title .logo { - font-family: 'Source Serif Pro', 'Noto Serif TC', serif; - color: #000; - font-size: 1.2em; - text-decoration: none; - } }
\ No newline at end of file diff --git a/sass/_partial/_term.scss b/sass/_partial/_term.scss new file mode 100644 index 0000000..7ddd894 --- /dev/null +++ b/sass/_partial/_term.scss @@ -0,0 +1,5 @@ +.terms { + padding: 1.3em 2em; + border: 1px #ddd; + border-top-style: solid; +} diff --git a/sass/_partial/_term_vertical.scss b/sass/_partial/_term_vertical.scss new file mode 100644 index 0000000..1c98719 --- /dev/null +++ b/sass/_partial/_term_vertical.scss @@ -0,0 +1,5 @@ +.terms { + padding: 2em 1.3em; + border-top-style: none; + border-right-style: solid; +} diff --git a/sass/style.scss b/sass/style.scss index 706584a..53e334f 100644 --- a/sass/style.scss +++ b/sass/style.scss @@ -28,3 +28,4 @@ body { @import "_partial/_post"; @import "_partial/_archive"; @import "_partial/_normalize"; +@import "_partial/_term" |