-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
50 lines (44 loc) · 881 Bytes
/
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
body {
font-family: 'Arial', sans-serif;
margin: 0;
padding: 0;
background: #f5f5f5;
display: flex;
justify-content: center;
align-items: center;
height: 200px;
}
.container {
text-align: center;
background: #ffffff;
padding: 20px;
border-radius: 10px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
h1 {
font-size: 24px;
margin-bottom: 20px;
color: #333333;
}
.toggle-button {
padding: 15px 25px;
font-size: 16px;
color: #ffffff;
background: linear-gradient(135deg, #4c83ff, #1a73e8);
border: none;
border-radius: 5px;
cursor: pointer;
transition: background 0.3s ease;
}
.toggle-button:hover {
background: linear-gradient(135deg, #1a73e8, #4c83ff);
}
.status {
margin-top: 20px;
font-size: 18px;
font-weight: bold;
color: #4c83ff;
}
.status:empty {
display: none;
}