diff options
| author | Fuwn <[email protected]> | 2021-05-06 20:20:37 +0000 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2021-05-06 20:20:37 +0000 |
| commit | 39d2fcc94ccd73db489590e1c327a6b34e0e73a3 (patch) | |
| tree | a41f897af916417a9b040b599252d4e23a16d658 /src/styles | |
| parent | Initial commit (diff) | |
| download | frontend-39d2fcc94ccd73db489590e1c327a6b34e0e73a3.tar.xz frontend-39d2fcc94ccd73db489590e1c327a6b34e0e73a3.zip | |
feat(global): :star:
Diffstat (limited to 'src/styles')
| -rw-r--r-- | src/styles/main.scss | 49 |
1 files changed, 49 insertions, 0 deletions
diff --git a/src/styles/main.scss b/src/styles/main.scss new file mode 100644 index 0000000..42fdfb6 --- /dev/null +++ b/src/styles/main.scss @@ -0,0 +1,49 @@ +html { + scroll-behavior: smooth; + overflow: scroll; + overflow-x: hidden; +} +body { + max-width: 58em; +} + +img { + border-radius: 5px; +} + +#random-image { + img { + height: 20em; + } + a:hover { + border-bottom: none; + } +} + +::-webkit-scrollbar { + width: 0px; + background: transparent; +} + +.image-rack { + text-align: center; + list-style-type: none; +} + +#image-rack-item { + display: inline; + padding: 10px; + + a:hover { + border-bottom: none; + } + + img { + width: 20%; + transition: 0.25s;; + } + img:hover { + opacity: 0.75; + width: 25%; + } +} |