-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstyle.css
132 lines (129 loc) · 2.52 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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
@font-face{
font-family: 'ManRope';
src: url(fonts/Manrope-Regular.ttf) format('truetype'),
url(fonts/Manrope-Regular.otf) format('opentype');
font-weight: normal;
}
@font-face{
font-family: 'ManRope';
src: url(fonts/Manrope-SemiBold.ttf) format('truetype'),
url(fonts/Manrope-SemiBold.otf) format('opentype');
font-weight: bold;
}
html{
height: 100vh;
}
body{
background: white;
height: 400vh;
}
.container{
display: flex;
flex-wrap: wrap;
justify-content: space-evenly;
align-items: flex-end;
}
.bottomFlex{
display: flex;
flex-wrap: wrap;
justify-content: space-between;
align-items: flex-end;
}
canvas{
position: fixed;
left: 48%;
top: 50%;
transform: translate(-50%, -50%);
max-height: 100vh;
max-width: 100vw;
height: 100vh;
display: flex;
justify-content: center;
}
section{
height: 100vh;
display: flex;
justify-content: center;
/* scroll-snap-align: start; */
}
h1{
text-align: left;
font-family: 'ManRope', sans-serif;
font-weight: bold;
padding-left: 3%;
padding-bottom: 1%;
font-size: 45px;
}
h2{
text-align: right;
padding-right: 3%;
padding-bottom: 1%;
}
h3{
text-align: right;
padding-top: 50%;
padding-left: 50%;
}
a:link {
color: black;
background-color: transparent;
text-decoration: none;
}
a:visited {
color: black;
background-color: transparent;
text-decoration: none;
}
a:hover {
color: black;
background-color: transparent;
text-decoration: underline;
}
a:active {
color: black;
background-color: transparent;
text-decoration: none;
}
@media (max-width: 600px){
h1{
text-align: left;
font-family: 'ManRope', sans-serif;
font-weight: bold;
font-size: 25px;
}
canvas{
position: fixed;
left: 48%;
top: 50%;
transform: translate(-50%, -50%);
max-height: 70vh;
max-width: 70vw;
height: 100vh;
display: flex;
justify-content: center;
}
img{
width: 80px;
height: 80px;
}
}
@media (max-width: 340px){
h3{
text-align: right;
padding-top: 120%;
padding-left: 50%;
}
}
@media (min-width: 341px) and (max-width: 380px){
h3{
text-align: right;
padding-top: 125%;
padding-left: 80%;
}
}
@media (min-width: 381px) and (max-width: 430px){
h3{
text-align: right;
padding-top: 170%;
}
}