Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: Homepage sections and content #24

Draft
wants to merge 5 commits into
base: master
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
58 changes: 58 additions & 0 deletions static/css/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -82,6 +82,20 @@ body {
font-size: 1.2rem;
}

.font_size_big {
font-size: 3rem;
}

@media screen and (max-width: 500px) {
.font_size_big {
font-size: 1.5rem !important;
}
}
@media screen and (max-width: 767px) {
.font_size_big {
font-size: 2rem;
}
}
/* Customizing Bootstrap */
.nav-link {
color: #062743;
Expand Down Expand Up @@ -151,6 +165,50 @@ body {
cursor: pointer;
}

/* HomePage */
.calendar_svg {
width: 40%;
}

.benefit_svg {
width: 30%;
}

.icon-holder {
position: absolute;
left: 50%;
top: -18px;
margin-left: -18px;
display: inline-block;
width: 45px;
height: 45px;
background: #062743;
color: #daeaf6;
text-align: center;
border-radius: 50%;
padding-top: 11px;
}

@media screen and (max-width: 767px) {
.calendar_svg {
width: 85%;
}
.benefit_svg {
width: 100% !important;
}
}
@media only screen and (min-width: 2000px) {
.calendar_svg {
width: 30%;
}
.benefit_svg {
width: 25%;
}
}
.list-style-square li {
list-style-type: square;
}

/* Main Content */
.neu_icon {
transition: all 0.4s;
Expand Down
2 changes: 1 addition & 1 deletion static/css/style.css.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Binary file added static/img/AlexThomas.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added static/img/DavidKim.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added static/img/JamieScott.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added static/img/JessicaWong.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
64 changes: 64 additions & 0 deletions static/scss/style.scss
Original file line number Diff line number Diff line change
Expand Up @@ -87,6 +87,22 @@ body {
font-size: 1.2rem;
}

.font_size_big{
font-size: 3rem;
}

@media screen and (max-width: 500px) {
.font_size_big{
font-size: 1.5rem !important;
}
}

@media screen and (max-width: 767px) {
.font_size_big{
font-size: 2rem;
}
}

/* Customizing Bootstrap */

.nav-link{
Expand Down Expand Up @@ -167,6 +183,54 @@ body {
}
}

/* HomePage */

.calendar_svg {
width: 40%;
}

.benefit_svg {
width: 30%;
}

.icon-holder {
position: absolute;
left: 50%;
top: -18px;
margin-left: -18px;
display: inline-block;
width: 45px;
height: 45px;
background: #062743;
color: #daeaf6;
text-align: center;
border-radius: 50%;
padding-top: 11px;
}

@media screen and (max-width: 767px) {
.calendar_svg {
width: 85%;
}

.benefit_svg {
width: 100% !important;
}
}
@media only screen and (min-width: 2000px) {
.calendar_svg {
width: 30%;
}

.benefit_svg {
width: 25%;
}
}

.list-style-square li {
list-style-type: square;
}

/* Main Content */

.neu_icon{
Expand Down
Loading