funky-framadate-front/src/app/vote-choice/vote-choice.component.scss

53 lines
755 B
SCSS
Raw Normal View History

.choice_container {
width: 320px;
height: 172px;
box-shadow: 0 3px 6px 0 rgba(black, 0.2);
overflow: auto;
display: flex;
2019-10-01 18:59:14 +02:00
}
2019-10-03 11:52:26 +02:00
.vote img{
vertical-align: middle;
2019-10-03 11:57:39 +02:00
display: block;
margin-left: auto;
margin-right: auto;
2019-10-03 11:52:26 +02:00
2019-10-01 18:59:14 +02:00
}
h2, h3 {
font-weight: normal;
2019-10-01 18:59:14 +02:00
}
span {
font-weight: bold;
font-size: 24px;
2019-10-01 18:59:14 +02:00
}
2019-10-03 11:52:26 +02:00
.nombre_vote {
vertical-align: middle;
float: left;
2019-10-01 18:59:14 +02:00
}
// TODO intricate selectors
2019-10-03 11:52:26 +02:00
.nombre_vote p {
line-height: 20px;
2019-10-01 18:32:24 +02:00
}
2019-10-03 11:52:26 +02:00
.vote button{
border: 1px solid #aeafb1;;
border-radius: 50%;
width:48px;
height: 48px;
}
2019-10-03 18:36:06 +02:00
.vote button:hover{
border-color: #807e7e;
transition:0,5s;
}
.vote button:focus{
border:3px solid #bf83c2;
outline:0;
}
.nombre_vote img{
vertical-align: middle;
display:inline;
}