Skip to content

Commit 029c90a

Browse files
committed
zbt -> ksa
1 parent 1fcb9b9 commit 029c90a

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

62 files changed

+42
-1237
lines changed

config.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
siteTitle="ZBT - Xi Chapter - MIT"
2-
linkPrefix = "/zbt-website"
1+
siteTitle="MIT Korean Students Association"
2+
linkPrefix = "/ksa-website"

css/styles.less

Lines changed: 29 additions & 28 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
/* real css */
2-
@blue: rgba(0, 86, 180, 1);
3-
@dark-blue: #1c1d53;
2+
@red: #8c1515;
3+
@dark-red: #590d0d;
44

55
a {
66
text-decoration: none;
7-
color: @blue;
7+
color: @red;
88
}
99
html {
1010
height: 100%;
@@ -42,7 +42,7 @@ body h2 {
4242
font-weight: bold;
4343
margin-top: 1.0em;
4444
margin-bottom: 0.5em;
45-
color: @dark-blue;
45+
color: @dark-red;
4646

4747
@media(min-width: 1281px) {
4848
font-size: 2.3em;
@@ -77,17 +77,17 @@ body b {
7777

7878
.logo {
7979
.logo-span {
80-
width: 100px;
81-
height: 100px;
80+
width: 80px;
81+
height: 80px;
8282
position: absolute;
83-
top: -15px;
83+
top: -3px;
8484

85-
background-image: url("../static/zbt-logo.png");
85+
background-image: url("../static/ksa-logo.png");
8686
background-size: contain;
8787
}
8888

8989

90-
max-width: 100px;
90+
max-width: 80px;
9191
margin-left: auto;
9292
margin-right: auto;
9393

@@ -162,29 +162,41 @@ body b {
162162
.background {
163163
height: 350px;
164164
background-size: cover;
165+
background-position-y: center;
165166
width: 100%;
166167
position: relative;
167168

168169
.caption {
169170
font-family: 'PT Sans',sans-serif;
170171
font-size: 4em;
171172
font-weight: bold;
173+
line-height: 0.7em;
172174
color: #DDD;
173-
padding-top: 2em;
175+
padding-top: 3em;
174176
padding-left: 3em;
175177

178+
smaller {
179+
font-size: 0.5em;
180+
}
181+
176182
@media(min-width: 1281px) {
177183
font-size: 5em;
178184
}
179185
}
180186

187+
@media(max-width: 860px) {
188+
.caption {
189+
padding-left: 0.4em;
190+
}
191+
}
192+
181193
@media(max-width: 800px) {
182194
background-position-x: center;
183195

184196
.caption {
185197
padding-top: 6em;
186198
padding-left: 0.3em;
187-
font-size: 2.7em;
199+
font-size: 2.3em;
188200
}
189201
}
190202

@@ -206,18 +218,6 @@ body b {
206218
background-position-y: center;
207219
}
208220

209-
#events.background {
210-
height: 400px;
211-
}
212-
213-
#brothers.background {
214-
background-position-x: center;
215-
}
216-
217-
#alumni.background {
218-
background-position: center;
219-
}
220-
221221
.call-to-action {
222222
margin-top: 1em;
223223
margin-bottom: 1em;
@@ -232,6 +232,7 @@ body b {
232232
width: 200px;
233233

234234
span {
235+
padding: 0.7em;
235236
font-family: 'PT Sans',sans-serif;
236237
font-size: 0.3em;
237238
color: #FFFFFF;
@@ -246,7 +247,7 @@ body b {
246247
}
247248

248249
span:hover {
249-
color: @blue;
250+
color: @red;
250251
}
251252
}
252253

@@ -341,7 +342,7 @@ hr {
341342
max-width: 200px;
342343
height: 1px;
343344
border: 0;
344-
background-image: linear-gradient(to right, @blue, rgba(0, 100, 200, 1), @blue);
345+
background-image: linear-gradient(to right, @red, @dark-red, @red);
345346

346347
margin-top: 3em;
347348
margin-bottom: 8em;
@@ -382,12 +383,12 @@ html body footer {
382383
}
383384

384385
.important {
385-
color: @dark-blue;
386+
color: @dark-red;
386387
a {
387388
white-space: nowrap;
388389
}
389390

390-
border: 1px solid @dark-blue;
391+
border: 1px solid @dark-red;
391392
padding: 0.6em;
392393
border-radius: 3px;
393394

@@ -433,7 +434,7 @@ html body footer {
433434
font-weight: bold;
434435
padding-top: 2em;
435436
padding-bottom: 1em;
436-
color: @blue;
437+
color: @red;
437438
}
438439
}
439440
}

deploy-to-prod

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
#!/bin/bash
22
# change this to your kerberos
33
gatsby build
4-
scp -r public/* [email protected]:/mit/zbt/web_scripts/
5-
4+
scp -r public/* [email protected]:/mit/ksa/web_scripts/

pages/_brothers-data.js

Lines changed: 0 additions & 632 deletions
This file was deleted.

pages/_template.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import '../css/markdown-styles'
77

88
import '../analytics.js';
99

10-
import LogoImg from '../static/zbt-logo.png';
10+
import LogoImg from '../static/ksa-logo.png';
1111

1212
module.exports = React.createClass({
1313
propTypes () {

pages/alumni.js

Lines changed: 0 additions & 39 deletions
This file was deleted.

pages/brothers.js

Lines changed: 0 additions & 145 deletions
This file was deleted.

0 commit comments

Comments
 (0)