-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
61 lines (52 loc) · 917 Bytes
/
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
@import url('https://fonts.googleapis.com/css2?family=Great+Vibes&family=Roboto+Mono&display=swap');
* {
box-sizing: border-box;
font-family: 'Roboto Mono', sans-serif;
margin: 0;
padding: 0;
}
nav {
background-color: #f0a73a;
color: white;
}
.nav-list {
display: flex;
justify-content: space-between;
align-items: center;
padding: 30px;
margin-bottom: 5px;
list-style: none;
}
.main-image {
display: none;
}
.loading-cat {
font-size: 50px;
text-align: center;
animation: 2s spin linear infinite;
display: none;
}
.container {
display: flex;
align-items: center;
justify-content: center;
height: 80vh;
overflow: hidden;
}
.main-image {
max-width: 100%;
max-height: 80vh;
}
@keyframes spin {
to {
transform: rotateZ(360deg);
}
}
.show {
display: block;
}
footer {
text-align: center;
font-size: 0.8rem;
padding-top: 20px;
}