funky-framadate-front/src/app/features/administration/form/steps/step-two/step-two.component.scss

56 lines
1014 B
SCSS
Raw Normal View History

2021-11-16 16:35:27 +01:00
@import '../../../../../../styles/variables';
2022-02-02 16:28:52 +01:00
.poll-kind {
}
2021-11-14 15:48:27 +01:00
.kind-of-poll {
2021-11-17 15:16:47 +01:00
min-height: 30vh;
2022-02-02 16:28:52 +01:00
2021-11-14 15:48:27 +01:00
.fa {
margin-right: 1em;
}
2022-02-02 16:28:52 +01:00
2021-11-16 16:35:27 +01:00
.button {
2022-02-02 16:28:52 +01:00
background: $d-blue30;
2021-11-16 16:35:27 +01:00
border: solid white 1px;
2022-02-02 16:28:52 +01:00
border-radius: 8px;
2021-11-30 17:37:23 +01:00
transition: background-color ease 1.5s;
2021-12-08 18:17:28 +01:00
color: $font-color;
2022-02-02 16:28:52 +01:00
margin-bottom: 0.85rem;
2022-03-10 09:52:35 +01:00
padding: 1.69rem 1rem 1.69rem 48px;
2022-02-02 16:28:52 +01:00
label {
font-weight: 700;
font-size: 14px;
line-height: 16px;
}
img {
margin-right: 11px;
margin-left: 0;
margin-top: -2px;
height: 18px;
width: 18px;
line-height: 18px;
}
input[type='radio'] {
width: 24px;
height: 24px;
}
2021-11-16 16:35:27 +01:00
&.is-selected {
border: solid $primary-color 1px;
}
2022-02-02 16:28:52 +01:00
2021-11-30 17:37:23 +01:00
&:hover {
border: solid $primary-color 1px;
transition: background-color ease 0.25s;
}
2022-03-01 10:56:46 +01:00
&.has-background-kind-classic {
background: $d-blue30 url('/assets/img/kind_classic.svg') no-repeat 19px center;
}
&.has-background-kind-date {
background: $d-blue30 url('/assets/img/kind_date.svg') no-repeat 19px center;
}
2021-11-16 16:35:27 +01:00
}
2021-11-07 14:52:49 +01:00
}