css lul
This commit is contained in:
@ -898,6 +898,11 @@ span#tags {
|
||||
padding-top: 1.5px;
|
||||
padding-bottom: 1.5px;
|
||||
}
|
||||
.badge-greentext {
|
||||
color: #789922;
|
||||
text-shadow: inherit !important;
|
||||
background-color: #252525;
|
||||
}
|
||||
|
||||
.about {
|
||||
padding: 10px;
|
||||
@ -1067,7 +1072,7 @@ body[type='login'] {
|
||||
/* visualizer */
|
||||
canvas {
|
||||
position: absolute;
|
||||
top: 0;
|
||||
top: 1px; /* This removes the ugly 1px line seen at the bottom when you hover over the audio element */
|
||||
left: 0;
|
||||
bottom: 0;
|
||||
right: 0;
|
||||
@ -1075,3 +1080,52 @@ canvas {
|
||||
width: 100%;
|
||||
pointer-events: none;
|
||||
}
|
||||
|
||||
/* tags */
|
||||
span#tags {
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
flex-wrap: wrap;
|
||||
line-height: 1.4;
|
||||
}
|
||||
|
||||
span#tags > span {
|
||||
display: inline-block;
|
||||
margin-top: 2.5px;
|
||||
margin-bottom: 2.5px;
|
||||
}
|
||||
|
||||
span#tags > span > input {
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
border: none;
|
||||
color: #fff;
|
||||
background-color: var(--badge-tag);
|
||||
}
|
||||
|
||||
/* toasts */
|
||||
div#flash {
|
||||
position: fixed;
|
||||
bottom: -28px;
|
||||
z-index: 999;
|
||||
left: 0;
|
||||
width: 100%;
|
||||
text-align: center;
|
||||
font-weight: bold;
|
||||
}
|
||||
div#flash.error {
|
||||
background-color: #fddfdf;
|
||||
border-bottom: 2px solid #f1a899;
|
||||
color: #5f3f3f;
|
||||
}
|
||||
div#flash.success {
|
||||
background-color: #4caf50;
|
||||
border-bottom: 2px solid #006018;
|
||||
color: #001c07;
|
||||
}
|
||||
div#flash.warn {
|
||||
background-color: #fffa90;
|
||||
border-bottom: 2px solid #dad55e;
|
||||
color: #777620;
|
||||
}
|
||||
|
Reference in New Issue
Block a user