add: polls
This commit is contained in:
parent
4dfa09207e
commit
6555324650
29 changed files with 339 additions and 56 deletions
|
@ -678,6 +678,28 @@ button.camo:hover,
|
|||
color: var(--color-text-lowered);
|
||||
}
|
||||
|
||||
.hover_left_bar {
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.hover_left_bar::after {
|
||||
top: 0;
|
||||
left: 0;
|
||||
width: 5px;
|
||||
content: "";
|
||||
height: 100%;
|
||||
position: absolute;
|
||||
background: var(--color-primary);
|
||||
border-top-left-radius: var(--radius);
|
||||
border-bottom-left-radius: var(--radius);
|
||||
opacity: 0%;
|
||||
transition: opacity 0.15s;
|
||||
}
|
||||
|
||||
.hover_left_bar:hover::after {
|
||||
opacity: 100%;
|
||||
}
|
||||
|
||||
/* input */
|
||||
input,
|
||||
textarea,
|
||||
|
@ -707,6 +729,12 @@ select:focus {
|
|||
color: var(--color-text-raised);
|
||||
}
|
||||
|
||||
.poll_bar {
|
||||
background-color: var(--color-primary);
|
||||
border-radius: var(--radius);
|
||||
height: 25px;
|
||||
}
|
||||
|
||||
/* pillmenu */
|
||||
.pillmenu {
|
||||
display: flex;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue