move css to static dir

This commit is contained in:
2019-06-08 23:02:10 +02:00
parent 9ae58c7761
commit 2a752d8f72
2 changed files with 0 additions and 24 deletions

87
static/site.css Normal file
View File

@@ -0,0 +1,87 @@
/* general */
body{
background: #323232;
}
/* ############### TOP NAVBAR ############# */
.top-spacer{
}
.top-bar{
position: fixed;
background-color: orange;
height: 20px;
padding-bottom: 10px;
padding-top: 10px;
left: 0;
top: 0;
right: 0;
}
.top-button{
height: 80%;
float: left;
margin-right: 10px;
background-color: red;
font-weight: bold;
color: #583535;
}
.input-field{
float: left;
margin-right: 10px;
}
/* #################### LEADERBOARDS ##################### */
.leaderboard-container{
width: 80%;
margin-top: 60px;
margin-bottom: 50px;
margin-left: auto;
margin-right: auto;
background-color: green;
}
.column-names{
width: 100%;
background-color: green;
}
.line-even{
width: 100%;
background-color: grey;
}
.line-odd{
width: 100%;
background-color: lightgrey;
}
/* ######################## FOOTER ####################### */
.footer{
text-align: center;
font-weight: bold;
font-size: 25px;
position: fixed;
width: 100%;
background-color: grey;
bottom: 0;
left: 0;
height: 30px;
}
.footerLink{
margin-top: 0;
padding-top: 0;
font-size: 12pt;
text-decoration: none;
color: black;
}
.mid{
margin-right: 25%;
margin-left: 25%;
}