Skip to content

Commit 46c3136

Browse files
committed
Added code for Projects page and worked on styles for Volunteer page.
1 parent c7becda commit 46c3136

16 files changed

+670
-810
lines changed

.vscode/settings.json

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"liveServer.settings.port": 5502
3+
}

assets/css/global.css

+17-3
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

assets/css/global.css.map

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

assets/css/global.scss

+19-5
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
padding: 0;
44
margin: 0;
55
box-sizing: border-box;
6-
font-family: 'Open Sans', sans-serif;
6+
font-family: "Open Sans", sans-serif;
77
color: white;
88
// outline: 1px solid white; //uncomment this line to diagnose position issues
99
}
@@ -27,6 +27,10 @@ h1 {
2727
text-align: center;
2828
}
2929

30+
a {
31+
text-decoration: none;
32+
}
33+
3034
h2 {
3135
background-color: #222222;
3236
padding: 0px 10px;
@@ -62,6 +66,18 @@ h3 {
6266
}
6367
}
6468

69+
.h3_wrap {
70+
&::before {
71+
content: "";
72+
height: 90%;
73+
width: 7px;
74+
background-color: $accent-color;
75+
position: absolute;
76+
left: -12px;
77+
top: 4px;
78+
}
79+
}
80+
6581
p {
6682
font-size: 100%;
6783
line-height: 2;
@@ -132,7 +148,7 @@ p {
132148
margin-left: 0px;
133149

134150
&::before {
135-
content: '';
151+
content: "";
136152
height: 30px;
137153
width: 9px;
138154
background-color: $accent-color;
@@ -151,7 +167,7 @@ p {
151167

152168
@media (min-width: 600px) and (orientation: portrait) {
153169
.text-content {
154-
width: 85%;
170+
width: 75%;
155171
}
156172

157173
p {
@@ -215,6 +231,4 @@ p {
215231
// XL DESKTOP *******************************************************************
216232

217233
@media (min-width: 1800px) {
218-
.container {
219-
}
220234
}

assets/css/projects.css

+29-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

assets/css/projects.css.map

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

assets/css/projects.scss

+27
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
#projects-title {
2+
height: 200px;
3+
width: 100%;
4+
background: url(../img/hero_img/abstractbaseball.jpg);
5+
background-position: center;
6+
background-repeat: no-repeat;
7+
background-size: cover;
8+
margin-bottom: 20px;
9+
position: relative;
10+
11+
h1 {
12+
background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.9));
13+
font-size: 50px;
14+
width: 85%;
15+
position: absolute;
16+
left: 0px;
17+
bottom: -25px;
18+
}
19+
}
20+
21+
.projectsIntro {
22+
margin-top: 100px;
23+
}
24+
25+
#our-work {
26+
margin-top: 0px;
27+
}

assets/css/volunteer.css

+75-72
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

assets/css/volunteer.css.map

+9-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)