Basic HTML framework
This commit is contained in:
70
static/base.css
Normal file
70
static/base.css
Normal file
@@ -0,0 +1,70 @@
|
||||
body{
|
||||
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
|
||||
background-color:#c5c0c0;
|
||||
margin: 0%;
|
||||
}
|
||||
.container{
|
||||
padding:0.5rem;
|
||||
/*display: flex;*/
|
||||
}
|
||||
.navbar-container{
|
||||
/* Primary color */
|
||||
background-color: #2196f3;
|
||||
height:2.5rem;
|
||||
}
|
||||
|
||||
.content{
|
||||
padding:0.5rem;
|
||||
border-radius: 0.25rem;
|
||||
width:50%;
|
||||
max-width: 70rem;
|
||||
margin:0.5rem auto 0.5rem auto;
|
||||
background-color: aliceblue;
|
||||
}
|
||||
|
||||
.nav-bottom-container{
|
||||
position: fixed;
|
||||
bottom:0;
|
||||
width:100%;
|
||||
}
|
||||
|
||||
.nav-bottom{
|
||||
background-color:aliceblue;
|
||||
|
||||
|
||||
padding:0.5rem;
|
||||
height: 1.5rem;
|
||||
width:100%;
|
||||
|
||||
}
|
||||
.nav-bottom-button-container{
|
||||
width:100%;
|
||||
text-align: right;
|
||||
}
|
||||
.nav-bottom-button{
|
||||
margin-bottom: 0.5rem;
|
||||
margin-right:0.5rem;
|
||||
margin-left: auto;
|
||||
/* Button - Secondary color */
|
||||
background-color:royalblue;
|
||||
border:0;
|
||||
border-radius: 5em;
|
||||
color:white;
|
||||
font-size: 2;
|
||||
}
|
||||
|
||||
.nav-bottom-pad{
|
||||
height:1.5rem;
|
||||
margin-top:0.5rem;
|
||||
}
|
||||
|
||||
|
||||
.box-shadow-1{
|
||||
box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
|
||||
}
|
||||
.box-shadow-2{
|
||||
box-shadow: 0 3px 6px rgba(0,0,0,0.16), 0 3px 6px rgba(0,0,0,0.23);
|
||||
}
|
||||
.box-shadow-3{
|
||||
box-shadow: 0 10px 20px rgba(0,0,0,0.19), 0 6px 6px rgba(0,0,0,0.23);
|
||||
}
|
Reference in New Issue
Block a user