68 lines
922 B
SCSS
68 lines
922 B
SCSS
/**
|
|
|
|
*= require_directory ./react-components
|
|
*/
|
|
|
|
@import "support/constants";
|
|
|
|
html,
|
|
body {
|
|
min-height: 100%;
|
|
overflow:auto;
|
|
//background-color:$jamkazam-background;
|
|
background-color:white;
|
|
color:white;
|
|
}
|
|
|
|
body {
|
|
min-height: 100%;
|
|
margin: 0;
|
|
padding: 0;
|
|
|
|
font-size: 16px;
|
|
line-height: 1.2;
|
|
font-family: Raleway, Arial, Helvetica, sans-serif;
|
|
|
|
}
|
|
|
|
#footer {
|
|
display:inline-block;
|
|
margin-top: 30px;
|
|
padding-top: 10px;
|
|
border-top:solid 1px #444;
|
|
position: fixed;
|
|
left: 0;
|
|
bottom: 0;
|
|
width: 100%;
|
|
color: white;
|
|
text-align: center;
|
|
background-color:#323232;
|
|
}
|
|
|
|
#copyright {
|
|
float:left;
|
|
font-size:11px;
|
|
color:#ccc;
|
|
}
|
|
|
|
#footer-links {
|
|
float:right;
|
|
font-size:11px;
|
|
color:#ccc;
|
|
}
|
|
|
|
#footer-links a {
|
|
color:#ccc;
|
|
text-decoration:none;
|
|
}
|
|
|
|
#footer-links a:hover {
|
|
color:#fff;
|
|
text-decoration:underline;
|
|
}
|
|
|
|
#version {
|
|
font-size:11px;
|
|
color:#ccc;
|
|
text-align: center;
|
|
} |