-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
59 lines (51 loc) · 1.21 KB
/
styles.css
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
/* styles.css */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap');
body {
margin: 0;
font-family: 'Poppins', sans-serif;
background-color: #121212;
color: #fff;
}
#status-text {
color: white;
font-size: 20px;
font-weight: 600;
text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.6);
}
#actions {
display: flex;
gap: 10px;
}
#actions button {
font-size: 18px;
padding: 10px 20px;
border: none;
border-radius: 8px;
background-color: #4caf50;
color: white;
cursor: pointer;
box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
transition: transform 0.2s, background-color 0.3s;
}
#actions button:hover {
background-color: #45a049;
transform: scale(1.05);
}
#actions button:active {
transform: scale(0.95);
}
#ui {
left: 0px;
right: 0px;
bottom: 0px;
height: 60px;
padding: 10px 15px;
position: absolute;
background: linear-gradient(90deg, #4b79a1, #283e51);
box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
border-top-left-radius: 10px;
border-top-right-radius: 10px;
display: flex;
justify-content: space-between;
align-items: center;
}