blob: da600921e7f2505df79471eb10566e0877c503a4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
.type_selection {
color: $dark-grey;
font-size: $h3-size;
position: fixed; // no need for positioning, set via code
pointer-events: none;
}
.type_selection__row {
margin-top: 3px;
margin-bottom: 3px;
}
#type_selection__chosen_type_name {
background-color: #D3D3D3;
border-radius: 3px;
padding: 0 7px;
margin-left: 3px;
}
#keys{
opacity: 0.5;
}
|