-
-
Notifications
You must be signed in to change notification settings - Fork 339
Expand file tree
/
Copy pathbottomControlPanel.scss
More file actions
128 lines (115 loc) · 2.44 KB
/
bottomControlPanel.scss
File metadata and controls
128 lines (115 loc) · 2.44 KB
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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
//.ToCenter {
// display: flex;
// justify-content: center;
// position: absolute;
// bottom: 0;
// left: 0;
// width: 100%;
// z-index: 9;
//}
.main {
//border-bottom: 2px solid rgba(255,255,255,0.25);
position: absolute;
bottom: 20px;
//will-change: z-index;
z-index: 9;
display: flex;
//background-image: linear-gradient(rgba(245, 247, 250, 0.7) 0%, rgba(195, 207, 226, 0.7) 100%);
flex-flow: row;
justify-content: center;
align-items: center;
//width: 100%;
height: 70px;
right: 20px;
border-radius: 35px;
//backdrop-filter: blur(5px);
padding: 0.15em 1.75em 0.15em 1.75em;
//background: linear-gradient(rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.25) 100%);
//border-radius: 10px;
font-size: 80%;
}
.button {
position: relative;
top: 2px;
padding: 0 0 0 0;
filter: drop-shadow(1px 1px 5px rgba(0, 0, 0, 1));
}
.button_text {
position: relative;
bottom: 8px;
color: white;
text-shadow: 1px 1px 5px rgba(0, 0, 0, 1);
padding-left: 3px;
}
.button_on {
height: 100%;
display: inline-block;
font-size: 150%;
padding: 0.25em 0.3em 0 0.15em;
transition: background-color 0.5s;
background: rgba(255, 255, 255, 0.3);
border-radius: 4px;
margin: 0 0.1em 0 0.1em;
}
.singleButton {
//border-bottom: 1px solid rgba(255, 255, 255, 0.5);
height: 100%;
display: inline-block;
color: white;
font-size: 150%;
padding: 0.3em 0.3em 0 0.15em;
transition: background-color 0.5s;
cursor: pointer;
border-radius: 4px;
margin: 0 0.1em 0 0.1em;
position: relative;
}
.singleButton:hover, .singleButton_active {
background-color: rgba(255, 255, 255, 0.3);
}
.fastSlPreview {
position: absolute;
top: -250px;
right: 0;
background: linear-gradient(315deg, rgba(253, 251, 251, 0.9) 0%, rgba(235, 237, 238, 0.85) 100%);
width: 900px;
height: 230px;
color: #005caf;
border-radius: 5px;
display: none;
animation: fastSlEnter 0.33s;
transition: opacity 0.33s;
}
.fastsave:hover .fastSPreview {
display: block;
}
.fastload:hover .fastLPreview {
display: block;
}
@keyframes fastSlEnter {
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}
.slPreviewMain {
padding: 0.5em 0.5em 0.5em 0.5em;
display: flex;
box-sizing: border-box;
height: 100%;
width: 100%;
}
.imgContainer {
display: flex;
overflow: hidden;
border-radius: 5px;
//outline: 4px solid #005caf;
flex-shrink: 0;
height: 100%;
}
.textContainer {
overflow: hidden;
padding: 0 0 0 0.5em;
}