Initial commit
This commit is contained in:
37
Frontend/pages/layouts/main/sass/Input.scss
Normal file
37
Frontend/pages/layouts/main/sass/Input.scss
Normal 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;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user