34 lines
451 B
CSS
34 lines
451 B
CSS
* {
|
|
padding: 0;
|
|
margin: 0;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
a { text-decoration: none; color: #555; }
|
|
a:visited { color: #5e61a0; }
|
|
|
|
*:before, *:after {
|
|
box-sizing: inherit;
|
|
}
|
|
|
|
html, body{
|
|
overflow: hidden;
|
|
}
|
|
|
|
body {
|
|
display: block;
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
width: 100%;
|
|
height: 100%;
|
|
|
|
font-size: 16px;
|
|
font-family: 'Source Sans Pro', Arial, sans-serif;
|
|
font-weight: 300;
|
|
color: #444;
|
|
|
|
overflow: hidden;
|
|
overflow-y: auto;
|
|
|
|
} |