-
-
Notifications
You must be signed in to change notification settings - Fork 16
/
style.css
101 lines (87 loc) · 1.91 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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
img {
width: 12vw;
height: auto;
border-radius: 3vw;
}
body {
margin: 0 15vw;
background: url('assets/background.jpg') no-repeat center center fixed;
background-size: cover;
padding-top: 140px;
}
.image-container {
display: flex;
justify-content: center;
flex-wrap: wrap;
}
.image-container a {
margin: 0 3px 3px;
text-align: center;
width: calc(20% - 10px);
}
@media screen and (max-width: 768px) {
.image-container a {
margin: 0 10px 10px;
width: calc(40% - 20px);
}
}
@media screen and (max-width: 480px) {
.image-container a {
margin: 0 20px 20px;
width: calc(80% - 40px);
}
}
.header-content {
display: flex;
align-items: center;
justify-content: space-between;
display: flex;
align-items: center;
justify-content: space-between;
}
@font-face {
font-family: 'Blanka';
src: url('/blanka-font.otf') format('opentype');
}
.header-section {
background-color: #E1E2E1;
padding: 10px 40px;
position: fixed;
top: 0;
left: 0;
right: 0;
z-index: 1000;
}
.header-content div {
display: flex;
flex-direction: column;
justify-content: center;
}
.header-content img {
width: 10vw;
height: auto;
border-radius: 0px;
margin-right: 20px;
}
h1 {
color: #E81111;
font-family: 'Blanka', Calibri, sans-serif;
font-size: 4vw;
margin: 0;
}
nav {
display: flex;
flex-direction: column;
align-items: flex-end;
margin: 0;
}
nav a {
margin: 5px 10px;
color: #333;
text-decoration: none;
font-size: 1.5vw;
font-family: 'Blanka', Calibri, sans-serif;
}
nav a:hover {
color: #000000;
}