Minimal commit

This commit is contained in:
Le Libre Au Quotidien 2019-10-07 19:17:51 +02:00
parent 280783c56b
commit c671a8bdea
2 changed files with 15 additions and 3 deletions

View File

@ -4,6 +4,7 @@
box-shadow: 0 3px 6px 0 rgba(black, 0.2); box-shadow: 0 3px 6px 0 rgba(black, 0.2);
overflow: auto; overflow: auto;
display: flex; display: flex;
align-items: center;
} }
.vote img{ .vote img{
vertical-align: middle; vertical-align: middle;
@ -27,7 +28,10 @@ span {
float: left; float: left;
} }
.nombre_vote span{
display: flex;
align-items: center;
}
// TODO intricate selectors // TODO intricate selectors
.nombre_vote p { .nombre_vote p {
line-height: 20px; line-height: 20px;
@ -37,6 +41,8 @@ border: 1px solid #aeafb1;;
border-radius: 50%; border-radius: 50%;
width:48px; width:48px;
height: 48px; height: 48px;
display: flex;
align-items: center;
} }
.vote button:hover{ .vote button:hover{
border-color: #807e7e; border-color: #807e7e;
@ -47,6 +53,10 @@ height: 48px;
outline:0; outline:0;
} }
.nombre_vote img{ .nombre_vote img{
vertical-align: middle; /* vertical-align: middle;
display:inline; display:inline;*/
display: block;
width: 20px;
height: 20px;
background-color: #000
} }

View File

@ -12,6 +12,7 @@ $violet: #bd10e0;
$red: #cd0000; $red: #cd0000;
$cool-grey: #aeafb1; $cool-grey: #aeafb1;
$warm-grey:#807e7e; $warm-grey:#807e7e;
$wisteria:#bf83c2;
// interpretations in app // interpretations in app
$primary_color: $ugly-purple; $primary_color: $ugly-purple;
@ -21,6 +22,7 @@ $logo_color: $dark-lavender;
$logo_color_2: $camo; $logo_color_2: $camo;
$choice_select_border_color: $cool-grey; $choice_select_border_color: $cool-grey;
$hover-color:$warm-grey; $hover-color:$warm-grey;
$clicked-color:$wisteria;
// FONT // FONT
$default_font : "pt_sans"; $default_font : "pt_sans";