Skip to content

Commit eb1e6ea

Browse files
committed
Revert back before last change
Synced to wrong branch
1 parent 74901a3 commit eb1e6ea

File tree

3 files changed

+25
-45
lines changed

3 files changed

+25
-45
lines changed

_sass/main.sass

Lines changed: 1 addition & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -106,18 +106,9 @@ a
106106
min-height: 350px
107107
padding: 60px 0 80px
108108
text-align: center
109-
.inner.container
110-
position: absolute
111-
left: 50%
112-
top: 50%
113-
min-width: 300px
114-
width: 55%
115-
transform: translate(-50%, -50%)
116-
-webkit-transform: translate(-50%, -50%)
117-
-moz-transform: translate(-50%, -50%)
118-
-o-transform: translate(-50%, -50%)
119109
.logo
120110
margin-bottom: 25px
111+
max-width: 60%
121112
#learn-more
122113
&:after
123114
border-color: $white transparent transparent transparent

assets/css/main.css

Lines changed: 23 additions & 34 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ body, html {
44
min-height: 250px; }
55

66
body {
7-
background: #FFFFFF;
7+
background: white;
88
color: #505050;
99
font-family: "Open Sans", sans-serif;
1010
font-size: 16px;
@@ -16,7 +16,7 @@ h1, h2, h3 {
1616
font-weight: 400;
1717
margin-top: 0; }
1818
h1.subtitle, h2.subtitle, h3.subtitle {
19-
color: #FFFFFF; }
19+
color: white; }
2020

2121
h1 {
2222
font-size: 3em; }
@@ -33,44 +33,44 @@ img {
3333
width: auto; }
3434

3535
a {
36-
color: #CE5F15;
36+
color: #ce5f15;
3737
text-decoration: none; }
3838
a:hover {
39-
color: #F36321; }
39+
color: #f36321; }
4040

4141
.container {
4242
margin: 0 auto;
4343
max-width: 1200px;
4444
padding: 0 8px; }
4545

4646
.button {
47-
border: 1px solid #FFFFFF;
47+
border: 1px solid white;
4848
-webkit-border-radius: 8px;
4949
-moz-border-radius: 8px;
5050
-ms-border-radius: 8px;
5151
-o-border-radius: 8px;
5252
border-radius: 8px;
53-
color: #FFFFFF;
53+
color: white;
5454
display: inline-block;
5555
font-weight: 700;
5656
margin-top: 25px;
5757
padding: 5px 25px 8px;
5858
position: relative; }
5959
.button:hover {
60-
background: #FFFFFF;
60+
background: white;
6161
color: #384859; }
6262
.button.orange {
63-
color: #F3852A;
64-
border-color: #F3852A; }
63+
color: #f3852a;
64+
border-color: #f3852a; }
6565
.button.orange:hover {
66-
background: #F3852A;
67-
color: #FFFFFF; }
66+
background: #f3852a;
67+
color: white; }
6868

6969
.banner {
7070
background: #384859;
7171
background: url("coderit_background.png") center center fixed;
7272
box-sizing: border-box;
73-
color: #FFFFFF;
73+
color: white;
7474
display: block;
7575
margin: 0 auto;
7676
padding: 10px 0;
@@ -86,20 +86,11 @@ a {
8686
min-height: 350px;
8787
padding: 60px 0 80px;
8888
text-align: center; }
89-
.banner.welcome .inner.container {
90-
position: absolute;
91-
left: 50%;
92-
top: 50%;
93-
min-width: 300px;
94-
width: 55%;
95-
transform: translate(-50%, -50%);
96-
-webkit-transform: translate(-50%, -50%);
97-
-moz-transform: translate(-50%, -50%);
98-
-o-transform: translate(-50%, -50%); }
9989
.banner.welcome .logo {
100-
margin-bottom: 25px; }
90+
margin-bottom: 25px;
91+
max-width: 60%; }
10192
.banner.welcome #learn-more:after {
102-
border-color: #FFFFFF transparent transparent transparent;
93+
border-color: white transparent transparent transparent;
10394
border-style: solid;
10495
border-width: 12px;
10596
content: "";
@@ -142,7 +133,7 @@ a {
142133
margin-bottom: -90px; }
143134

144135
.title {
145-
color: #F3852A;
136+
color: #f3852a;
146137
text-align: center; }
147138

148139
.loader {
@@ -191,11 +182,11 @@ a {
191182
padding-bottom: 100px;
192183
padding-top: 100px; }
193184
#events .inner {
194-
background: #FFFFFF;
185+
background: white;
195186
margin: 10px;
196187
padding: 50px; }
197188
#events h3 {
198-
color: #F3852A; }
189+
color: #f3852a; }
199190
#events p {
200191
margin: 0 auto;
201192
text-align: justify;
@@ -238,7 +229,7 @@ a {
238229
.event-page-nav:hover {
239230
background: #384859; }
240231
.event-page-nav.active {
241-
background: #F3852A; }
232+
background: #f3852a; }
242233

243234
#committees .committee {
244235
box-sizing: border-box;
@@ -263,7 +254,7 @@ a {
263254
#committees .committee .committee-desc {
264255
text-align: justify; }
265256
#committees .committee .committee-name {
266-
color: #F3852A;
257+
color: #f3852a;
267258
margin: 0; }
268259
#committees .committee.middle {
269260
text-align: center;
@@ -297,7 +288,7 @@ a {
297288

298289
#footer {
299290
background: #242f3a;
300-
color: #FFFFFF;
291+
color: white;
301292
padding: 3px 0;
302293
text-align: center; }
303294

@@ -356,11 +347,9 @@ a {
356347
width: auto; }
357348

358349
#events .container {
359-
background: #FFFFFF; }
350+
background: white; }
360351
#events .inner {
361352
padding: 10px 3px; }
362353

363354
#event-list-cta {
364-
width: auto; } }
365-
366-
/*# sourceMappingURL=main.css.map */
355+
width: auto; } }

assets/css/main.css.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)