Initial commit

This commit is contained in:
2023-08-29 19:55:48 +02:00
commit 7c2eec4446
473 changed files with 40947 additions and 0 deletions

View File

@@ -0,0 +1,37 @@
input,
select,
textarea {
border: 2px solid var(--main-hover-color);
transition-duration: .2s;
border-radius: var(--border-radius);
padding: 5px 10px;
background: var(--background);
color: white;
font-family: 'Montserrat', sans-serif;
font-size: 12px;
&:hover {
border: 2px solid var(--main-color);
}
&:focus,
&:active {
border: 2px solid var(--main-color);
outline: none;
}
}
input[type="color"] {
overflow: hidden;
&::-webkit-color-swatch-wrapper {
padding: 0px;
width: calc(100% + 22px);
height: calc(100% + 12px);
margin-top: -6px;
margin-left: -11px;
outline: none;
border: none;
}
}