Start mods page

This commit is contained in:
Jai A
2020-05-16 22:37:02 -07:00
parent 4b4889d5f2
commit f80f161886
12 changed files with 204 additions and 3 deletions

84
static/css/mod.css Normal file
View File

@@ -0,0 +1,84 @@
.main-content {
width: 80%;
display: flex;
flex-direction: column;
}
.mod-header {
display: flex;
flex-direction: row;
align-items: center;
width: 100%;
height: 100px;
background-color: white;
margin: 0;
border-bottom: 1px solid darkgrey;
}
.mod-icon {
width: 70px;
height: 70px;
margin: 15px 10px 15px 25px;
}
.mod-title {
display: flex;
flex-direction: column;
}
.mod-title-text {
margin: 0;
}
.mod-description {
width: 100%;
background-color: white;
border: 1px solid darkgrey;
border-top: none;
padding: 10px 20px;
}
.mod-sidebar {
display: flex;
flex-direction: column;
align-items: center;
border-left: 1px solid darkgrey;
width: 20%;
height: 100vh;
background-color: white;
}
.sidebar-entry {
margin: 30px auto;
text-align: center;
display: flex;
flex-direction: column;
}
.sidebar-info {
display: flex;
flex-direction: row;
align-items: center;
margin: 0 auto;
}
.sidebar-img {
height: 20px;
padding: 5px;
}
.donation-info img {
height: 50px;
object-fit: cover;
width: 200px;
}
.sidebar-line {
height: 1px;
width: 80%;
background-color: darkgrey;
margin: 0 auto;
}