File size: 1,809 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 |
html,
input,
textarea {
font-family: 'Roboto', sans-serif;
line-height: 1.4;
background: #eee;
}
body {
margin: 0;
}
h1 {
margin-top: 0;
}
p {
margin: 0;
}
pre {
padding: 10px;
background-color: #eee;
white-space: pre-wrap;
}
:not(pre) > code {
font-family: monospace;
background-color: #eee;
padding: 3px;
}
img {
max-width: 100%;
max-height: 20em;
}
blockquote {
border-left: 2px solid #ddd;
margin-left: 0;
margin-right: 0;
padding-left: 10px;
color: #aaa;
font-style: italic;
}
blockquote[dir='rtl'] {
border-left: none;
padding-left: 0;
padding-right: 10px;
border-right: 2px solid #ddd;
}
table {
border-collapse: collapse;
}
td {
padding: 10px;
border: 2px solid #ddd;
}
input[type='text'],
input[type='search'] {
box-sizing: border-box;
font-size: 0.85em;
width: 100%;
padding: 0.5em;
border: 2px solid #ddd;
background: #fafafa;
}
input[type='text']:focus,
input[type='search']:focus {
outline: 0;
border-color: blue;
}
iframe {
width: 100%;
border: 1px solid #eee;
}
details > summary {
user-select: none;
}
[data-slate-editor] > * + *,
[data-slate-chunk] > * + * {
margin-top: 1em;
}
.fancy {
background-color: rgb(218, 225, 255);
padding: 40px;
font-size: 20px;
min-height: 150px;
outline: 3px dashed rgb(0, 94, 128);
border-radius: 20px;
outline-offset: -20px;
white-space: pre-wrap;
}
.performance-controls {
padding: 20px;
margin: -20px -20px 20px -20px;
background-color: white;
position: sticky;
top: 0;
z-index: 1;
border-bottom: 1px solid lightgrey;
max-height: 50vh;
overflow-y: auto;
}
.performance-controls > * {
margin-top: 10px;
}
.performance-controls > details > :not(summary) {
margin-left: 10px;
}
.performance-controls p {
margin-top: 5px;
}
|