67 lines
924 B
CSS
67 lines
924 B
CSS
|
|
||
|
#targetSelection {
|
||
|
margin: 6em auto;
|
||
|
font-size: 110%;
|
||
|
max-width: 860px;
|
||
|
}
|
||
|
|
||
|
#targetSelection h2 {
|
||
|
margin: 2em;
|
||
|
}
|
||
|
#targetSelection ul {
|
||
|
text-align: left;
|
||
|
margin: 2em auto;
|
||
|
width: 80%;
|
||
|
}
|
||
|
|
||
|
#targetSelection label {
|
||
|
display: block;
|
||
|
margin-bottom: 1em;
|
||
|
display: flex;
|
||
|
vertical-align: middle;
|
||
|
}
|
||
|
|
||
|
|
||
|
#targetSelection div {
|
||
|
display: inline-block;
|
||
|
margin-left: 1em;
|
||
|
line-height: .6em;
|
||
|
}
|
||
|
|
||
|
#targetSelection .optionTitle {
|
||
|
font-size: 120%;
|
||
|
}
|
||
|
|
||
|
#targetSelection input:checked + div {
|
||
|
font-weight: bold;
|
||
|
color: #333350;
|
||
|
}
|
||
|
|
||
|
/* TODO styler les checkboxes https://codepen.io/KenanYusuf/pen/PZKEKd */
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
#targetSelection button {
|
||
|
color: white;
|
||
|
display: block;
|
||
|
text-align: center;
|
||
|
background: #4A89DC;
|
||
|
padding: .3em 1em;
|
||
|
font-size: 200%;
|
||
|
margin: 2em auto;
|
||
|
width: 8em;
|
||
|
border: none;
|
||
|
box-shadow: 0px 9px 14px 0px rgba(0, 0, 0, 0.1);
|
||
|
opacity: 0.95
|
||
|
}
|
||
|
#targetSelection button:hover {
|
||
|
box-shadow: none;
|
||
|
opacity: 1;
|
||
|
}
|