-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathWorldSelector.scss
More file actions
57 lines (46 loc) · 1018 Bytes
/
WorldSelector.scss
File metadata and controls
57 lines (46 loc) · 1018 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
@import 'variables';
.WorldSelector {
background-color: #CCE6E2;
padding: 1rem;
border: 1px solid grey;
border-radius: 3px;
min-height: 100%;
}
.WorldSelector .HeaderIcon, .WorldSelector .WorldIcon {
display: block;
height: 4rem;
width: 4rem;
padding: 0.2rem;
}
.WorldSelector .HeaderIcon {
background: none;
}
.WorldSelector .WorldIcon {
box-shadow: inset 0 .1rem .2rem rgba(0, 0, 0, 0.25);
background-color: white;
border-radius: 5px;
margin-top: 0.8rem;
padding: 0.4rem;
}
.WorldSelector .WorldIcon svg {
width: 2.5rem;
height: 2.5rem;
}
.WorldSelector .WorldIcon--selected {
background: #88C3BC;
}
.WorldSelector button:focus {
box-shadow: 0 0 0 $c2lc-focus-indicator-width #299DCE;
}
.WorldSelector button.btn:hover {
padding-top: 0.25rem;
padding-left: 0.2rem;
}
.Scene-collapsed .WorldSelector {
display: flex;
align-items: center;
}
.Scene-collapsed .WorldIcon {
margin-left: 2rem;
margin-top: 0;
}