diff --git a/public/css/style.scss b/public/css/style.scss index 08e67ceb3..0162037b6 100644 --- a/public/css/style.scss +++ b/public/css/style.scss @@ -75,6 +75,54 @@ a:hover { top: -5rem; } + +#tagsWrapper{ + width: 100%; + height: 100%; + background: rgba(0, 0, 0, 0.75); + position: fixed; + left: 0; + top: 0; + z-index: 1000; + display: grid; + justify-content: center; + align-items: center; + padding: 5rem 0; + #tagsEdit{ + background: var(--bg-color); + border-radius: var(--roundness); + padding: 2rem; + display: grid; + gap: 1rem; + overflow-y: scroll; + .button{ + color: var(--text-color); + cursor: pointer; + transition: .25s; + padding: .2rem .5rem; + border-radius: var(--roundness); + + background: rgba(0,0,0,.1); + text-align: center; + -webkit-user-select: none; + display: grid; + align-content: center; + height: min-content; + height: -moz-min-content; + &.active{ + background: var(--main-color); + color: var(--bg-color); + } + &:hover,&:focus{ + color: var(--bg-color); + background: var(--main-color); + outline: none; + } + } + } +} + + #versionHistoryWrapper{ width: 100%; height: 100%; diff --git a/public/index.html b/public/index.html index aa02b62dd..0a340dc4c 100644 --- a/public/index.html +++ b/public/index.html @@ -32,6 +32,13 @@ Important information about your account. Please click this message.
Signed in
+