aboutsummaryrefslogtreecommitdiff
path: root/profile/public/style.css
diff options
context:
space:
mode:
authorMarvin Borner2021-01-29 14:10:45 +0100
committerMarvin Borner2021-01-29 14:10:45 +0100
commitaec1e8f2cd4c0fdedd200fc30094587c0834d372 (patch)
tree407946fbe687b252d4133067aa770e0ee24851b1 /profile/public/style.css
parent2eff2deb98280aa61241e06163c87155911bbfae (diff)
parent8637186a9f835972a5a0b96e4df1665d6d42557a (diff)
Merge branch 'crop'
Diffstat (limited to 'profile/public/style.css')
-rw-r--r--profile/public/style.css18
1 files changed, 16 insertions, 2 deletions
diff --git a/profile/public/style.css b/profile/public/style.css
index 106e590..becb428 100644
--- a/profile/public/style.css
+++ b/profile/public/style.css
@@ -54,12 +54,14 @@ img {
}
#user h1,
-#comments h2 {
+#comments h2,
+#char h2 {
cursor: pointer;
}
#user h1:hover,
-#comments h2:hover {
+#comments h2:hover,
+#char h2:hover {
opacity: 0.8;
}
@@ -132,3 +134,15 @@ img {
height: 80%;
margin-bottom: 12px;
}
+
+.popup {
+ z-index: 10;
+ position: absolute;
+ display: none;
+ max-height: 600px;
+ max-width: 600px;
+ left: 50%;
+ top: 50%;
+ transform: translateX(-50%) translateY(-50%);
+ border: 1px solid black;
+}