-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #35 from TartejBrothers/Changes
Adding Flask Build Template
- Loading branch information
Showing
55 changed files
with
2,456 additions
and
0 deletions.
There are no files selected for viewing
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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; | ||
} | ||
} |
Oops, something went wrong.