2017-11-16 17:11:42 +00:00
|
|
|
#targetSelection {
|
2017-12-21 15:44:15 +00:00
|
|
|
height: 35em;
|
2017-12-19 16:09:17 +00:00
|
|
|
display: flex;
|
|
|
|
justify-content: space-around;
|
|
|
|
align-items: center;
|
|
|
|
flex-wrap: wrap;
|
|
|
|
font-size: 100%;
|
2017-11-16 17:11:42 +00:00
|
|
|
max-width: 860px;
|
|
|
|
}
|
|
|
|
|
2017-12-19 16:09:17 +00:00
|
|
|
#targetSelection > div {
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
2017-11-16 17:11:42 +00:00
|
|
|
#targetSelection h2 {
|
|
|
|
margin: 2em;
|
|
|
|
}
|
2017-12-19 16:09:17 +00:00
|
|
|
#targetSelection #targets {
|
|
|
|
width: 30em;
|
|
|
|
margin: 0 auto;
|
2017-11-16 17:11:42 +00:00
|
|
|
}
|
2018-03-01 09:43:44 +00:00
|
|
|
#targetSelection #targets > div {
|
|
|
|
margin-bottom: 2em;
|
|
|
|
}
|
|
|
|
|
|
|
|
#targetSelection .main {
|
|
|
|
display: flex;
|
|
|
|
justify-content: space-between;
|
|
|
|
align-items: middle;
|
|
|
|
}
|
2017-11-16 17:11:42 +00:00
|
|
|
#targetSelection label {
|
|
|
|
display: block;
|
2017-11-17 18:36:43 +00:00
|
|
|
cursor: pointer;
|
2017-11-16 17:11:42 +00:00
|
|
|
}
|
2018-01-30 11:03:33 +00:00
|
|
|
#targetSelection label i {
|
2018-03-01 09:43:44 +00:00
|
|
|
font-size: 170%;
|
2017-11-16 17:11:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#targetSelection .optionTitle {
|
2018-03-01 09:43:44 +00:00
|
|
|
font-size: 120%;
|
|
|
|
margin-left: 1em;
|
2017-11-16 17:11:42 +00:00
|
|
|
}
|
2018-03-01 09:43:44 +00:00
|
|
|
#targetSelection p {
|
2017-12-11 14:42:03 +00:00
|
|
|
margin: 0;
|
2018-01-10 16:51:35 +00:00
|
|
|
font-weight: 400;
|
2018-03-01 09:43:44 +00:00
|
|
|
font-size: 90%;
|
2017-11-16 17:11:42 +00:00
|
|
|
}
|
|
|
|
|
2018-02-28 16:45:13 +00:00
|
|
|
#targetSelection input[type='checkbox'] {
|
2017-11-17 18:36:43 +00:00
|
|
|
position: absolute;
|
|
|
|
z-index: -1;
|
|
|
|
opacity: 0;
|
|
|
|
}
|
2017-12-20 16:49:58 +00:00
|
|
|
#targetSelection input:disabled + label,
|
|
|
|
#targetSelection input:disabled + label p,
|
|
|
|
#targetSelection input:disabled + label > i {
|
|
|
|
color: #aaa !important;
|
|
|
|
}
|
2017-11-16 17:11:42 +00:00
|
|
|
|
2017-11-17 18:36:43 +00:00
|
|
|
#targetSelection input + label > i.fa {
|
|
|
|
max-width: 0.75em;
|
|
|
|
}
|
2017-11-16 17:11:42 +00:00
|
|
|
|
2017-11-30 10:14:39 +00:00
|
|
|
#targetSelection #action {
|
|
|
|
text-align: center;
|
2017-12-19 16:09:17 +00:00
|
|
|
margin: 1em auto;
|
2017-11-30 10:14:39 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#targetSelection #action p {
|
|
|
|
font-size: 80%;
|
2018-03-01 14:32:14 +00:00
|
|
|
border-bottom: #4b4b66 solid 2px;
|
|
|
|
color: #4b4b66;
|
2017-11-30 10:14:39 +00:00
|
|
|
}
|
|
|
|
|
2018-03-01 09:43:44 +00:00
|
|
|
#targetSelection input[type='text'] {
|
|
|
|
border: 1px solid #3c4963;
|
|
|
|
}
|
|
|
|
|
|
|
|
#targetSelection .targetValue {
|
|
|
|
display: inline-block;
|
|
|
|
border: 1px solid #ccc;
|
|
|
|
}
|
|
|
|
|
|
|
|
#targetSelection .targetValue,
|
|
|
|
#targetSelection input[type='text'] {
|
|
|
|
width: 6em;
|
|
|
|
display: inline-block;
|
|
|
|
height: 1.4em;
|
|
|
|
padding: 0;
|
|
|
|
font-size: 100%;
|
|
|
|
padding: 0em 0.3em;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Autre idée pour styler les checkboxes https://codepen.io/KenanYusuf/pen/PZKEKd */
|