-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCSS.css
More file actions
46 lines (39 loc) · 694 Bytes
/
CSS.css
File metadata and controls
46 lines (39 loc) · 694 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
border-radius: 5px;
width: 300px;
font-size: 16px;
background-color: #ffcc80;
}
button {
padding: 10px 20px;
background-color: #4CAF50;
color: white;
border: none;
border-radius: 5px;
cursor: pointer;
font-size: 16px;
background-color: #ff6f00;
}
button:hover {
background-color: #ff8f00;
}
.loading {
display: none;
text-align: center;
font-size: 20px;
margin-top: 20px;
}
.hidden {
display: none;
}
.bold {
font-weight: bold;
}
.center {
text-align: center;
}
footer {
background-color: #333;
color: #fff;
padding: 10px 7;
text-align: center;
}