diff options
author | Alex <alex@scerba.org> | 2024-03-12 11:50:04 -0400 |
---|---|---|
committer | Alex <alex@scerba.org> | 2024-03-12 11:50:04 -0400 |
commit | cb42cbdf16dfd44ffa39cc451d53125bc14805ed (patch) | |
tree | 7019f8af2235e26d96428de2ddff0b8e6ddc03ac /static | |
parent | 1fd67d6135f0a71c314bffe41958d02bda0e3e01 (diff) |
Increase information in welcome message and add a link feature to the down arrow.
Diffstat (limited to 'static')
-rw-r--r-- | static/style.css | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/static/style.css b/static/style.css index bdd0db2..7358a7f 100644 --- a/static/style.css +++ b/static/style.css @@ -94,9 +94,12 @@ main { font-weight: bolder;
}
-.down-arrow {
+.arrow-container {
position: absolute;
bottom: 4rem;
+}
+
+.down-arrow {
border: solid black;
border-width: 0 3px 3px 0;
display: block;
@@ -181,6 +184,10 @@ figcaption { margin-top: 0.3rem;
}
+i {
+ color: rgb(177, 177, 177);
+}
+
img, video {
max-width: 100%;
height: auto;
|