first commit

This commit is contained in:
2020-03-21 15:52:49 +01:00
commit 3f96cc6fe3
126 changed files with 57882 additions and 0 deletions

39
resources/sass/components/_btn.scss vendored Normal file
View File

@@ -0,0 +1,39 @@
// Button
.btn {
font-size: 1.6rem;
border: 1px solid transparent;
padding: 0.5rem;
border-radius: 0.5rem;
cursor: pointer;
box-shadow: 1px 1px 2px $grey;
transition: background-color 0.2s, color 0.2s;
&:hover {
transition: background-color 0.2s, color 0.2s;
}
}
.btn-primary {
@extend .btn;
background-color: $medium;
border-color: $medium;
color: $white;
&:hover {
background-color: $dark;
color: $light;
}
}
.btn-secondary {
@extend .btn;
background-color: $mediumLight;
border-color: $medium;
color: $dark;
&:hover {
background-color: $dark;
color: $light;
}
}