-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
79 lines (70 loc) · 1.29 KB
/
Copy pathstyle.css
File metadata and controls
79 lines (70 loc) · 1.29 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
body {
margin: 0;
padding: 0;
font-family: "Poppins", sans-serif;
background: linear-gradient(135deg, #74ebd5, #9face6);
display: flex;
justify-content: center;
align-items: start;
min-height: 100vh;
}
.wrapper {
background: rgba(255, 255, 255, 0.15);
border-radius: 20px;
backdrop-filter: blur(15px);
box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
padding: 24px;
width: 90%;
max-width: 360px;
margin-top: 40px;
text-align: center;
}
h1 {
color: #fff;
font-size: 24px;
margin-bottom: 20px;
}
.stats {
display: grid;
gap: 10px;
margin: 16px 0;
color: #fff;
font-size: 16px;
}
.stat {
background: rgba(255, 255, 255, 0.2);
padding: 10px;
border-radius: 10px;
backdrop-filter: blur(5px);
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
button {
font-size: 15px;
padding: 10px 16px;
margin: 6px;
border: none;
border-radius: 8px;
font-weight: 600;
cursor: pointer;
transition: 0.3s ease;
}
#startBtn {
background-color: #2ecc71;
color: #fff;
}
#stopBtn {
background-color: #e74c3c;
color: #fff;
}
button:hover {
transform: scale(1.05);
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}
canvas {
width: 100%;
height: 240px;
border-radius: 12px;
margin-top: 14px;
background: white;
box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1);
}