-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
55 lines (49 loc) · 1023 Bytes
/
Copy pathstyle.css
File metadata and controls
55 lines (49 loc) · 1023 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
body {
margin: 0;
padding: 0;
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
background: #121212;
color: white;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
}
.glass-container {
background: rgba(255, 255, 255, 0.1);
border-radius: 20px;
backdrop-filter: blur(15px);
box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
padding: 30px;
text-align: center;
width: 300px;
}
button {
background-color: rgba(255, 255, 255, 0.15);
border: none;
border-radius: 10px;
color: white;
margin: 5px;
padding: 10px 15px;
cursor: pointer;
}
input {
padding: 5px;
border-radius: 10px;
border: none;
margin-top: 10px;
width: 90%;
}
.hidden {
display: none;
}
#savedTimersScreen {
position: absolute;
top: 10%;
background-color: rgba(0,0,0,0.7);
border-radius: 20px;
padding: 20px;
width: 90%;
max-width: 400px;
backdrop-filter: blur(10px);
}