-
Notifications
You must be signed in to change notification settings - Fork 46
/
Copy pathmanchetteWithSpaceTimeChart.scss
77 lines (67 loc) · 1.47 KB
/
manchetteWithSpaceTimeChart.scss
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
.space-time-chart-container {
position: relative;
overflow: hidden;
// Create a new stacking context so that any z-index inside the space time
// chart doesn't affect the rest of the UI
transform: translate(0);
.toolbar {
position: absolute;
right: 7px;
top: 7px;
z-index: 10;
border: 1px solid var(--black10);
border-radius: 5px;
button {
outline: none;
background: var(--white100);
color: var(--black100);
padding: 0 7px;
}
button:not(:last-child) {
border-radius: 5px 0 0 5px;
border-right: 1px solid var(--black10);
}
button:last-child {
border-radius: 5px;
}
.reset-button {
svg {
transform: rotate(180deg) translate(0, 2px);
}
}
.menu-button {
svg {
transform: translate(0, -1px);
}
}
}
.settings-panel {
position: absolute;
top: 2px;
right: 2px;
bottom: 36px;
width: 263px;
color: rgb(49, 46, 43);
background: rgba(247, 246, 238, 0.4);
backdrop-filter: blur(5px);
border: solid 1px rgba(0, 0, 0, 0.1);
box-shadow: 0 0 0 1px rgb(250, 249, 245);
padding: 32px 28px;
z-index: 10;
.close-btn {
position: absolute;
top: 0;
right: 0;
width: 16px;
height: 16px;
margin-left: 490px;
margin-top: 14px;
margin-right: 14px;
border: none;
}
section header {
font-weight: 600;
margin-bottom: 7px;
}
}
}