aboutsummaryrefslogtreecommitdiffstats
path: root/styles/main/_user.scss
diff options
context:
space:
mode:
Diffstat (limited to 'styles/main/_user.scss')
-rw-r--r--styles/main/_user.scss14
1 files changed, 14 insertions, 0 deletions
diff --git a/styles/main/_user.scss b/styles/main/_user.scss
new file mode 100644
index 0000000..07e5c28
--- /dev/null
+++ b/styles/main/_user.scss
@@ -0,0 +1,14 @@
+.user {
+ font-weight: 600;
+ // cursor: pointer;
+ position: relative;
+ padding: .25em .5em;
+ margin: .25em;
+ border-radius: .5em;
+ transition: .3s background, .3s color;
+
+ &:hover {
+ color: var(--color-text-alt);
+ background-color: var(--color-selected);
+ }
+}