53 lines
908 B
CSS
53 lines
908 B
CSS
@import url("https://fonts.googleapis.com/css?family=Roboto");
|
|
*, *:before, *:after {
|
|
margin: 0;
|
|
padding: 0;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
html, body, canvas {
|
|
width: 100%;
|
|
height: 100%;
|
|
overflow: hidden;
|
|
}
|
|
|
|
body {
|
|
background: radial-gradient(#514969, #0e171b);
|
|
}
|
|
|
|
.footer {
|
|
position: fixed;
|
|
right: 0;
|
|
bottom: 0;
|
|
left: 0;
|
|
padding: 10px 10px;
|
|
text-align: right;
|
|
font-family: 'Roboto', sans-serif;
|
|
font-size: 12px;
|
|
}
|
|
.footer.v-dark {
|
|
background-color: #343436;
|
|
color: #fff;
|
|
-webkit-font-smoothing: antialiased;
|
|
-moz-osx-font-smoothing: grayscale;
|
|
}
|
|
.footer.v-light {
|
|
background-color: #fff;
|
|
color: #343436;
|
|
}
|
|
|
|
.footer-anchor {
|
|
display: inline-block;
|
|
margin-left: 5px;
|
|
padding: 2px 4px;
|
|
color: #343436;
|
|
text-decoration: none;
|
|
background-color: #fcd000;
|
|
border-radius: 4px;
|
|
opacity: 1;
|
|
transition: opacity 0.2s;
|
|
}
|
|
.footer-anchor:hover {
|
|
opacity: 0.6;
|
|
}
|