-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
55 lines (45 loc) · 830 Bytes
/
Copy pathstyle.css
File metadata and controls
55 lines (45 loc) · 830 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
/* Add styles here */
.button {
margin: 5px;
font-size: 20px;
border: none;
cursor: pointer;
color: white;
background-color: #0080804a;
border-radius: 20px;
/* Blurred Background */
backdrop-filter: blur(30px);
-webkit-backdrop-filter: blur(30px);
/* Relative Sizing */
width: 75px;
height: 50px;
}
#up {
position: absolute;
right: 20px;
bottom: 20px;
}
#right {
position: absolute;
left: 100px;
bottom: 20px;
border-radius: 0px 20px 20px 0px; /* Rounded corners */
}
#left {
position: absolute;
left: 20px;
bottom: 20px;
border-radius: 20px 0px 0px 20px; /* Rounded corners */
}
#fullscreen {
position: absolute;
right: 0px;
top: 0px;
font-size: 15px;
width: 30px;
height: 30px;
}
.button:active {
transform: scale(0.95);
background-color: #A0FACEA0;
}