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
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
|
.discord-banner {
border-radius: 0.5rem;
}
.hero-image {
width: 20rem;
margin: auto;
}
.hero-body {
padding-top: 1rem;
padding-bottom: 1rem;
}
.section-sp img {
height: 5rem;
margin-right: 2rem;
}
.video-container iframe,
.video-container object,
.video-container embed {
width: 100%;
height: calc(92vw * 0.5625);
margin: 8px auto auto auto;
}
div.card.github-card {
box-shadow: none;
border: #d1d5da 1px solid;
border-radius: 3px;
}
div.repo-headline {
font-size: 1.25rem;
margin-bottom: 8px;
}
span.repo-language-dot {
border-radius: 50%;
height: 12px;
width: 12px;
top: 1px;
display: inline-block;
position: relative;
}
span.repo-language-dot.python {
background-color: #3572A5;
}
span.repo-language-dot.html {
background-color: #e34c26;
}
span.repo-language-dot.css {
background-color: #563d7c;
}
span.repo-language-dot.javascript {
background-color: #f1e05a;
}
#repo-footer-item {
margin-left: 1.2rem;
}
#sponsors-hero {
padding-top: 2rem;
padding-bottom: 3rem;
}
.welcome-video {
box-shadow: 0 3px 6px rgba(0,0,0,0.16), 0 3px 6px rgba(0,0,0,0.23);
transition: all 0.3s cubic-bezier(.25,.8,.25,1);
border-radius: 10px;
margin-top: 1em;
}
.welcome-video:hover {
box-shadow: 0 14px 28px rgba(0,0,0,0.25), 0 10px 10px rgba(0,0,0,0.22);
}
.aspect-wrapper {
position: relative;
padding-bottom: 56.25%;
}
.aspect-content {
top: 0;
left: 0;
width: 100%;
height: 100%;
position: absolute;
}
.hero-card img{
border-radius: 10px;
box-shadow: 0 1px 6px rgba(0,0,0,0.16), 0 1px 6px rgba(0,0,0,0.23);
margin-top: 1em;
}
.main-head {
position: relative;
background-color: #7289DA;
color: #fff;
height: 32vw;
min-height: 270px;
max-height: 500px;
overflow-x: hidden;
width: 100%;
padding: 0;
}
.bottom-wave {
background: url(../../images/waves/wave_white.svg) repeat-x;
position: absolute;
bottom: 0;
width: 6400px;
height: 26px;
animation: wave 50s cubic-bezier( 0.36, 0.45, 0.63, 0.53) infinite;
transform: translate3d(0, 0, 0);
z-index: 3;
}
.above-waves {
z-index: 4;
}
.wave {
background: url(../../images/waves/wave_dark.svg) repeat-x;
position: absolute;
bottom: 0;
width: 6400px;
height: 198px;
animation: wave 65s cubic-bezier( 0.36, 0.45, 0.63, 0.53) infinite;
transform: translate3d(0, 0, 0);
}
.wave:nth-of-type(2) {
animation: wave 60s cubic-bezier( 0.36, 0.45, 0.63, 0.53) -.125s infinite, swell 60s ease -1.25s infinite;
opacity: 0.5;
height: 178px;
animation-delay: -50s;
}
@keyframes wave {
0% {
margin-left: 0;
}
100% {
margin-left: -1600px;
}
}
.showcase {
margin: 0 1em;
}
.mini-timeline {
height: 3px;
position: relative;
margin: 50px 0 50px 0;
background: linear-gradient(to right, #ffffff00, #666666ff, #ffffff00);
text-align: center;
}
.mtl-item {
display: inline-block;
vertical-align: middle;
width: 30px;
height: 30px;
border-radius: 50%;
position: relative;
top: -14px;
margin: 0 4% 0 4%;
background-color: #3EB2EF;
color: white;
font-size: 15px;
line-height: 33px;
border:none;
box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
transition: all 0.3s cubic-bezier(.25,.8,.25,1);
}
.mtl-item:hover {
box-shadow: 0 2px 5px rgba(0,0,0,0.16), 0 2px 5px rgba(0,0,0,0.23);
transform: scale(1.5);
}
.message {
margin: 5px;
}
|