Badges + Refactoring

This commit is contained in:
Jai A
2020-05-11 22:53:08 -07:00
parent 6be22c474d
commit a738998c2c
14 changed files with 337 additions and 234 deletions

49
static/css/main.css Normal file
View File

@@ -0,0 +1,49 @@
@import url('https://fonts.googleapis.com/css?family=Montserrat:400,600');
body {
margin: 0;
font-family: 'Montserrat', sans-serif;
}
.temp-circle-logo {
height: 50px;
width: 50px;
background-color: white;
border-radius: 50%;
display: inline-block;
margin-left: 20%;
}
.site-header {
position: sticky;
background-color: black;
width: 100%;
height: 75px;
margin-bottom: 10px;
display: flex;
align-items: center;
}
.site-header h2 {
color: white;
font-weight: bolder;
padding: 0 20px 0 10px;
}
.links-container {
margin: 0 auto;
}
.links-container a {
color: white;
padding: 0 30px;
text-decoration: none;
}
.rounded-border {
border-radius: 10px;
border: 1px;
}
.gray-border {
border: 1px solid darkgray;
}