-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcode-of-conduct.css
200 lines (168 loc) · 3.65 KB
/
code-of-conduct.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
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
192
193
194
195
196
197
198
199
200
.navbar .menu-icon {
background:#6A6BF4 !important;
}
.hero {
height:90vh;
background-image:linear-gradient(rgba(0, 0, 0, 0.3),
rgba(0, 0, 0, 0.3)), url("Supercomputer.jpg");
background-position: 50% 30%;
background-repeat: no-repeat;
background-size: 100%;
color:white;
display: flex;
align-items: flex-end;
flex-direction: row;
padding: 0 5vw;
padding-bottom:5vh;
}
.hero h1 {
font-size:7vw;
font-weight:400;
line-height:1;
letter-spacing:-5px;
margin-top:10vh;
}
.hero .title-container {
display:flex;
justify-content:space-between;
align-items:flex-end;
width:90vw;
}
.navbar {
background:rgba(255,255,255,0.4);
backdrop-filter: blur(40px);
border: 1px solid rgba(255,255,255,0.15);
}
.content div {
display:flex;
flex-direction: column;
gap:3vh;
}
.content .links {
display:flex;
flex-direction: row;
gap:0;
}
.content {
width:100%;
padding:10vh 10vw;
padding-bottom:0;
display: flex;
flex-direction: column;
gap:3vh;
}
p {
font-size:var(--small-font-size);
}
.scroll-container h2 {
margin-bottom:1.5vh;
}
.content > div {
margin-top:3vh;
}
.content a {
text-decoration: none;
display: inline-block;
color: black;
padding:1vh 1.5vw;
border-radius: 1000px;
border: 2px solid black;
font-size: var(--small-font-size);
width:max-content;
transition: background 0.3s ease, color 0.3s ease-in-out;
}
.content a:hover {
color:white;
background:black;
transition: background 0.3s ease, color 0.3s ease-in-out;
}
.content .links {
display:flex;
gap:1.5vw;
flex-wrap: wrap;
}
.content ul {
display:flex;
flex-direction: column;
gap:1.5vh;
font-size: var(--small-font-size);
margin:1.5vh 5vw;
}
.content div a {
font-size:var(--ascii-font-size);
}
@media screen and (max-width:1710px) {
.projects {
display:none;
}
.projects-mobile {
display:block;
width:100%;
display:flex;
flex-direction: column;
padding:3vh 2.5vw;
gap:1vh;
}
.projects-mobile .project {
width:100%;
height:30vh;
background-size:cover !important;
background-position: center !important;
padding:2vh 2.5vw;
}
}
@media screen and (max-width:1300px) {
.hero a {
margin-bottom:0;
display:none;
}
.hero {
background-size:cover !important;
height:70vh;
}
.hero h1 {
font-size:14vw;
}
}
@media screen and (max-width:1000px) {
.apply .image {
transform:translate(0);
}
.apply .text p {
margin-left:0 !important;
width:100%;
}
.how p {
width:100% !important;
}
.how .more-info {
width:100% !important;
}
.how .main-text {
font-size:var(--large-font-size-mobile);
}
.project h1 {
font-size:var(--extreme-font-size-mobile)
}
.how .more-info p {
font-size:var(--small-font-size-mobile);
}
.panel p {
font-size:var(--small-font-size-mobile);
}
.apply, .how, .scroll-container > h2, .services, .cohort, .footer, .services h2 {
padding-top:7.5vh;
margin-top:0;
margin-bottom:0;
padding-bottom:0;
}
.footer {
padding-bottom:5vh;
}
.services h2 {
margin-bottom:1vh;
}
.content div a {
padding:1vh 3vw;
}
}