-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
56 lines (48 loc) · 858 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
@import url("https://fonts.googleapis.com/css2?family=Source+Code+Pro:wght@200;300;400;500;600;700;800;900&display=swap");
* {
font-family: "Source Code Pro", monospace;
margin: 0;
padding: 0;
}
.canvas-container {
position: relative;
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
height: 100vh;
}
.hero {
z-index: 1;
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
margin-top: -20vh;
}
#bg {
width: 100%;
height: 100vh;
position: absolute;
}
.logo {
margin-left: 10vw;
width: 55%;
z-index: 1;
}
h1 {
color: white;
font-weight: 300;
font-size: 1.5vw;
z-index: 1;
margin-top: -3em;
}
@media only screen and (max-device-width: 736px) {
.logo {
width: 90vw;
}
h1 {
text-align: center;
font-size: 3vw;
}
}