-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
83 lines (73 loc) · 1.04 KB
/
style.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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
*,
html,
body,
nav {
margin: 0;
padding: 0;
}
body {
font-family: Arial, Helvetica, sans-serif;
font-weight: 700;
background-color: white;
color: #202124;
}
.dark {
background-color: #202124;
color: white;
}
.rainbow {
background-color: #7430f9;
color: white;
}
.container {
display: flex;
justify-content: center;
align-items: center;
width: 100%;
height: 100vh;
}
.navbar {
background-color: #202124;
color: white;
}
nav {
display: flex;
justify-content: center;
align-items: center;
position: fixed;
background-color: #7430f9;
top: 0;
width: 100%;
}
nav a {
color: white;
text-decoration: none;
padding: 15px;
}
nav a:hover {
background: #5624ba;
cursor: pointer;
transition: background-color 0.2s ease-in-out;
}
.info {
display: flex;
justify-content: center;
align-items: center;
position: absolute;
top: 20%;
font-size: 20px;
font-weight: 700;
animation: rapPer 0.5s infinite;
}
@keyframes rapPer {
0% {
font-size: 18px;
}
50% {
font-size: 20px;
color: #5624ba;
}
100% {
font-size: 16px;
}
}