25 lines
399 B
CSS
25 lines
399 B
CSS
@font-face {
|
|
font-family: 'Open Sans Regular';
|
|
src: url('OpenSans-Regular.ttf')format('truetype');
|
|
}
|
|
|
|
body {
|
|
background-color: #050505;
|
|
color: #f2f2f2;
|
|
width: 34%;
|
|
margin: 40px 33% 10px 33%;
|
|
font-family: 'Open Sans Regular', sans-serif ;
|
|
}
|
|
|
|
code {
|
|
font-size: 1.1em;
|
|
}
|
|
|
|
pre {
|
|
outline: 1px solid;
|
|
border-radius: 3px;
|
|
padding: 5px;
|
|
background-color: #080808;
|
|
color: eeeeee:
|
|
}
|