-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
64 lines (59 loc) · 1.15 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
60
61
62
63
64
body {
font-family: Arial, sans-serif;
background: linear-gradient(-45deg, #398e4e, #3d6185, #363abf, #663a9c);
background-size: 400% 400%;
animation: gradient 15s ease infinite;
color: #f4f4f4;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
min-height: 100vh;
margin: 0;
padding: 0;
}
@keyframes gradient {
0% {
background-position: 0% 50%;
}
50% {
background-position: 100% 50%;
}
100% {
background-position: 0% 50%;
}
}
button {
background-color: #4CAF50;
border: none;
color: white;
padding: 15px 32px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 16px;
margin: 4px 2px;
cursor: pointer;
border-radius: 4px;
transition: background-color 0.2s;
}
button:hover {
background-color: #45a049;
}
h1#title {
font-size: 2.5rem;
color: #4CAF50;
text-align: center;
font-family: 'Roboto', Arial, sans-serif;
margin-bottom: 1rem;
}
#loadingMessage {
display: none;
position: fixed;
bottom: 0;
left: 50%;
transform: translateX(-50%);
color: #4CAF50;
font-family: 'Roboto', Arial, sans-serif;
padding: 1rem;
}