mirror of
https://github.com/WhitestormJS/whs.js.git
synced 2026-01-18 16:03:24 +00:00
65 lines
1.3 KiB
CSS
65 lines
1.3 KiB
CSS
@font-face {
|
|
font-family: 'Proxima Nova';
|
|
src: url("../fonts/ProximaNova.ttf") format("truetype");
|
|
font-weight: normal;
|
|
font-style: normal; }
|
|
|
|
@font-face {
|
|
font-family: 'Proxima Nova Thin';
|
|
src: url("../fonts/ProximaNovaThin.ttf") format("truetype");
|
|
font-weight: normal;
|
|
font-style: normal; }
|
|
|
|
body {
|
|
background: white;
|
|
margin: 0;
|
|
padding: 0; }
|
|
|
|
* {
|
|
font-family: 'Proxima Nova', Georgia, sans-serif; }
|
|
|
|
.sidebar {
|
|
overflow: scroll;
|
|
height: 100vh; }
|
|
|
|
iframe {
|
|
width: 100%;
|
|
height: 100%;
|
|
opacity: 0;
|
|
transition: opacity ease-in-out 0.3s; }
|
|
body[data-example-ready] iframe {
|
|
opacity: 1; }
|
|
|
|
[uk-spinner] {
|
|
opacity: 1;
|
|
transition: opacity ease-in-out 0.3s; }
|
|
body[data-example-ready] [uk-spinner] {
|
|
opacity: 0; }
|
|
|
|
#explanation {
|
|
background: white;
|
|
height: 100%;
|
|
z-index: 2;
|
|
overflow: scroll; }
|
|
|
|
pre {
|
|
background: #f8f8f8;
|
|
border: none; }
|
|
pre * {
|
|
font-family: Inconsolata, Monaco, Consolas, 'Courier New', Courier;
|
|
font-weight: 400 !important; }
|
|
|
|
#filter {
|
|
background: #ececec;
|
|
height: 40px;
|
|
margin-bottom: 20px; }
|
|
#filter span {
|
|
font-size: 12pt !important;
|
|
width: 16px;
|
|
height: 16px; }
|
|
#filter input {
|
|
font-size: 12pt !important;
|
|
height: 16px;
|
|
font-family: 'Proxima Nova Thin', Georgia, sans-serif;
|
|
padding-left: 35px; }
|