mirror of
https://github.com/Paris-est-Ludique/intranet.git
synced 2025-06-10 09:34:21 +02:00
22 lines
391 B
SCSS
22 lines
391 B
SCSS
@import "./variables";
|
|
|
|
button {
|
|
padding: 7px 20px;
|
|
background-color: $color-orange;
|
|
border: 0;
|
|
color: $color-white;
|
|
border-radius: 16px;
|
|
font-weight: bold;
|
|
cursor: pointer;
|
|
}
|
|
|
|
input[type="text"],
|
|
input[type="password"],
|
|
input[type="number"],
|
|
input[type="email"],
|
|
select {
|
|
padding: 4px 6px;
|
|
border: 1px solid $color-grey-medium;
|
|
border-radius: 4px;
|
|
}
|