Skip to content

Commit

Permalink
Merge pull request #35 from TartejBrothers/Changes
Browse files Browse the repository at this point in the history
Adding Flask Build Template
  • Loading branch information
TartejBrothers authored Jan 19, 2024
2 parents 6192dce + 39828a5 commit b43d419
Show file tree
Hide file tree
Showing 55 changed files with 2,456 additions and 0 deletions.
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

0 comments on commit b43d419

Please sign in to comment.