-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
58 lines (51 loc) · 1.05 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
body {
background-color: black;
font-family: 'Quicksand', sans-serif;
}
.background {
background-image: url('background.png');
background-size: cover;
background-position: center;
height: 100vh;
position: fixed;
width: 100%;
z-index: -1;
opacity: 0.3;
}
.container {
height: 100vh;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
.meitrex-text {
font-size: 5rem;
font-weight: bold;
color: #ffffff;
text-shadow: 0px 0px 10px rgba(255, 255, 255, 0.5);
}
.work-in-progress-text {
font-size: 2rem;
color: #ffffff;
text-shadow: 0px 0px 10px rgba(255, 255, 255, 0.5);
margin-top: -40px;
}
.icon-links {
display: flex;
justify-content: center;
align-items: center;
position: absolute;
bottom: 0;
padding: 20px;
box-sizing: border-box;
}
.icon-link {
margin: 0 20px;
font-size: 2.5rem;
color: #ffffff;
}
@font-face {
font-family: 'Quicksand';
src: url(Quicksand.woff2) format('woff2');
}