summaryrefslogtreecommitdiff
path: root/static/css/styles.css
diff options
context:
space:
mode:
authorElizabeth <elizabeth@simponic.xyz>2024-04-09 18:39:14 -0400
committersimponic <simponic@hatecomputers.club>2024-04-09 18:39:14 -0400
commit1d75bf7489527925217bd5611ba7910c0ffe077c (patch)
tree3b6e6056912648a88e1e42c1e42ed7e58e2d4701 /static/css/styles.css
parentee49015cc90e6c136ad94243fffc9241b9506a36 (diff)
downloadhatecomputers.club-1d75bf7489527925217bd5611ba7910c0ffe077c.tar.gz
hatecomputers.club-1d75bf7489527925217bd5611ba7910c0ffe077c.zip
profiles (#7)
Reviewed-on: https://git.hatecomputers.club/hatecomputers/hatecomputers.club/pulls/7 Co-authored-by: Elizabeth <elizabeth@simponic.xyz> Co-committed-by: Elizabeth <elizabeth@simponic.xyz>
Diffstat (limited to 'static/css/styles.css')
-rw-r--r--static/css/styles.css36
1 files changed, 30 insertions, 6 deletions
diff --git a/static/css/styles.css b/static/css/styles.css
index ba58018..886052e 100644
--- a/static/css/styles.css
+++ b/static/css/styles.css
@@ -3,6 +3,7 @@
@import "/static/css/table.css";
@import "/static/css/form.css";
@import "/static/css/guestbook.css";
+@import "/static/css/club.css";
@font-face {
font-family: "ComicSans";
@@ -22,15 +23,27 @@
}
@-webkit-keyframes cursor {
- 0% {cursor: url("/static/img/cursor-2.png"), auto;}
- 50% {cursor: url("/static/img/cursor-1.png"), auto;}
- 100% {cursor: url("/static/img/cursor-2.png"), auto;}
+ 0% {
+ cursor: url("/static/img/cursor-2.png"), auto;
+ }
+ 50% {
+ cursor: url("/static/img/cursor-1.png"), auto;
+ }
+ 100% {
+ cursor: url("/static/img/cursor-2.png"), auto;
+ }
}
@keyframes cursor {
- 0% {cursor: url("/static/img/cursor-2.png"), auto;}
- 50% {cursor: url("/static/img/cursor-1.png"), auto;}
- 100% {cursor: url("/static/img/cursor-2.png"), auto;}
+ 0% {
+ cursor: url("/static/img/cursor-2.png"), auto;
+ }
+ 50% {
+ cursor: url("/static/img/cursor-1.png"), auto;
+ }
+ 100% {
+ cursor: url("/static/img/cursor-2.png"), auto;
+ }
}
body {
@@ -70,3 +83,14 @@ hr {
max-width: 900px;
gap: 10px 10px;
}
+
+.info {
+ margin-bottom: 1rem;
+ max-width: 600px;
+
+ transition: opacity 0.3s;
+}
+
+.info:hover {
+ opacity: 0.8;
+}