0.2.3 #99

Merged
sonny merged 112 commits from development into master 2020-05-23 16:58:42 +02:00
4 changed files with 13 additions and 12 deletions
Showing only changes of commit 6ff26c71a0 - Show all commits

View file

@ -19,7 +19,7 @@
border-radius: 5px; border-radius: 5px;
background-color: $focus-blue; background-color: $blue;
&--error { &--error {
background-color: $error-red; background-color: $error-red;

View file

@ -3,11 +3,10 @@
justify-content: center; justify-content: center;
margin: 0 0 5px 0; margin: 0 0 5px 0;
padding: 15px 0; padding: 10px 0;
width: 100%; width: 100%;
background-color: $white; background-color: $white;
box-shadow: 0px 5px darken($azureish-white, +10%);
ol { ol {
display: flex; display: flex;
@ -28,7 +27,7 @@
border: none; border: none;
border-radius: 2px; border-radius: 2px;
background-color: $azureish-white; background-color: darken($azureish-white, 20%);
&:hover{ &:hover{
background-color: lighten($azureish-white, +5%); background-color: lighten($azureish-white, +5%);
@ -36,6 +35,7 @@
& a { & a {
@extend .button; @extend .button;
color: $white;
} }
} }

View file

@ -16,11 +16,11 @@
&:hover { &:hover {
cursor: pointer; cursor: pointer;
background-color: darken($azureish-white, +10%); background-color: $focus-blue;
} }
&--selected { &--selected {
background-color: darken($azureish-white, +10%); background-color: $focus-blue;
} }
} }

View file

@ -1,8 +1,3 @@
$white: rgba(255, 255, 255, 1);
$black: rgba(0, 0, 0, 1);
$dark: rgba(0, 0, 0, 0.4);
// light blue // light blue
$azureish-white: rgba(205, 230, 245, 1); $azureish-white: rgba(205, 230, 245, 1);
@ -34,5 +29,11 @@ $confirm-green: $success-green;
$cancel-red: $error-red; $cancel-red: $error-red;
$border-gray: rgba(227, 227, 227, 1); $border-gray: rgba(227, 227, 227, 1);
$focus-blue: darken($azureish-white, +50%);
$focus-blue: darken($azureish-white, +10%);
$default-font-color: rgba(48, 51, 53, 1); $default-font-color: rgba(48, 51, 53, 1);
$white: rgba(255, 255, 255, 1);
$black: rgba(0, 0, 0, 1);
$blue: darken($azureish-white, +50%);
$dark: rgba(0, 0, 0, 0.4);