-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
50 lines (47 loc) · 924 Bytes
/
style.css
File metadata and controls
50 lines (47 loc) · 924 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
/* html {
background-color: #00539f;
} */
body {
font-family: Georgia, 'Times New Roman', Times, serif;
text-align: center;
margin: 50px;
background-color: #f9f9f9;
}
h1 {
text-shadow: 1px 1px 1px black;
color: #4CAF50;
}
p::first-line {
font-size: 18px;
color: #555;
}
.button-container {
margin-top: 20px;
}
button {
background-color: #4CAF50;
color: white;
border: 20px;
padding: 10px 20px;
font-size: 16px;
border-radius: 5px;
cursor: pointer;
margin: 10px;
transition: background-color 0.3s, transform 0.2s;
}
button:hover {
background-color: linear-gradient(90deg, #45a049, #32a89f);
transform: scale(1.05);
}
a {
text-decoration: none;
}
#progress_warning {
color: #ff4444;
font-weight: bold;
padding: 10px;
margin: 20px auto;
border: 2px solid #ff4444;
border-radius: 5px;
display: inline-block;
}