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

Adding Flask Build Template #35

Merged
merged 1 commit into from
Jan 19, 2024
Merged
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
Binary file added Flask/.DS_Store
Binary file not shown.
152 changes: 152 additions & 0 deletions Flask/static/css/activites.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,152 @@
.headerbody {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
padding-top: 100px;
padding-bottom: 100px;
}

.activities {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
gap: 20px;
margin-bottom: 60px;
font-family: mediamoure;
}
.activities h1 {
font-size: 96px;
}
.activities p {
width: 70%;
font-size: 22px;
}
.fullwidth {
width: 100%;
object-fit: contain;
margin-bottom: 60px;
}
.help {
font-family: roboto;
display: flex;
flex-direction: column;
justify-content: center;
background-color: #f2f1f1;
align-items: center;
padding: 50px 0px 50px 0px;
}
.helpsplitter {
margin: 20px auto 20px auto;
width: 20%;
border: 1px solid #e6222b;
}
.helpbody {
margin-top: 20px;
display: flex;
flex-direction: row;
width: 60%;
max-width: 500px;
align-items: flex-start;
}
.help h1 {
font-family: lora;
font-size: 50px;
}
.help p {
font-size: 18px;
width: 70%;
text-align: center;
margin-bottom: 20px;
}
.helpbody {
display: flex;
flex-direction: row;
justify-content: center;
align-items: center;
gap: 20px;
}
.helpbodychild {
width: 35%;
display: flex;
flex-direction: column;
justify-content: flex-start;
align-items: center;
}
.helpbodychild img {
height: 40px;
}
.helpbodychild p {
margin-top: 20px;
color: #e6222b;
font-size: 10px;
text-align: center;
}

#activitygrey {
background-color: #f2f1f1;
}
.activitybody {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
padding: 60px 0px 60px 0px;
text-align: left;
font-family: mediamoure;
}
.activitybody h1 {
font-size: 96px;
text-align: center;
margin-bottom: 40px;
}
.activitybody p {
font-size: 22px;
padding: 0px 50px 20px 50px;
margin-bottom: 20px;
}
.activitysplitter {
width: 80%;
margin: 0px auto 0px auto;
border: 1px solid #e6222b;
}
.donate {
display: flex;
flex-direction: column;
}
.donatebottom {
background-color: #1b204a;
color: white;
padding: 25px 40px;
border-radius: 25px;
font-size: 24px;
font-family: mediamoure;
border: none;
margin: 20px auto 20px auto;
}
.donate a {
width: fit-content;
margin: 0px auto 0px auto;
}
.donate img {
margin: 20px 30px 20px auto;
height: 30px;
}
@media screen and (max-width: 1000px) {
.navitems {
display: none;
}

.activities h1 {
font-size: 60px;
}
.activitybody h1 {
font-size: 40px;
}
.help h1 {
font-size: 40px;
width: 80%;
text-align: center;
}
}
Loading