aboutsummaryrefslogtreecommitdiff
path: root/src/styles
diff options
context:
space:
mode:
Diffstat (limited to 'src/styles')
-rw-r--r--src/styles/main.scss49
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%;
+ }
+}