20 lines
399 B
CSS
20 lines
399 B
CSS
|
@import '../static/fonts.css';
|
||
|
|
||
|
|
||
|
html { background-color: ; }
|
||
|
body {
|
||
|
font-family: "Moderustic";
|
||
|
background-color: #d4fad4;
|
||
|
box-sizing: border-box;
|
||
|
margin: 0 auto;
|
||
|
min-height: 100%;
|
||
|
padding: 2em;
|
||
|
min-width: 100%px;
|
||
|
font-size: 1.2em;
|
||
|
border: double 3px #ddd;
|
||
|
border-top: none;
|
||
|
border-bottom: none;
|
||
|
}
|
||
|
h1 { padding-left: 0.5em; }
|
||
|
a { text-decoration: none; }
|