-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
62 lines (52 loc) · 832 Bytes
/
style.css
File metadata and controls
62 lines (52 loc) · 832 Bytes
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
:root {
font-family: "Open Sans", sans-serif;
font-feature-settings: "liga" 1, "calt" 1; /* fix for Chrome */
}
html {
min-height: 100%;
}
body {
margin: 0;
}
canvas {
position: absolute;
left: 0;
top: 0;
pointer-events: none;
}
.logo {
width: 100%;
padding-top: 106.28%;
background: rgba(88, 22, 137, .2);
backdrop-filter: blur(2px);
mask-image: url(logo.svg);
mask-size: contain;
mask-repeat: no-repeat;
}
main {
font-size: 6vw;
margin: 6vw;
}
@media (min-width: 600px) {
body {
display: flex;
align-items: flex-start;
margin: 0 auto;
max-width: 1200px;
}
.logo {
width: 50%;
padding-top: 53.14%;
flex-shrink: 0;
}
main {
font-size: 3vw;
margin: 6vw;
}
}
@media (min-width: 1200px) {
main {
font-size: 36px;
margin: 72px;
}
}