stylesheet.css 3.9 KB
Newer Older
J
Jason Park 已提交
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
html, body {
    margin: 0;
    padding: 0;
    overflow: hidden;
}

body {
    background: rgb(60, 63, 65);
    font-family: 'Roboto', sans-serif;
    color: rgb(187, 187, 187);
}

a {
    text-decoration: none;
}

* {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -o-user-select: none;
    user-select: none;
    color: inherit;
}

button {
    border: none;
    height: 100%;
    padding: 0 12px;
    margin: 0;
    background: none;
    font-size: 12px;
    outline: none;
J
Jason Park 已提交
35 36 37
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
J
Jason Park 已提交
38 39 40 41 42 43 44 45 46 47
}

button:hover {
    background: rgba(0, 0, 0, .15);
}

button.active {
    background: rgb(44, 44, 44);
}

J
Jason Park 已提交
48 49 50 51
button.category {
    background: rgba(0, 0, 0, .10);
}

J
Jason Park 已提交
52
button.indent {
J
Jason Park 已提交
53
    padding-left: 28px;
J
Jason Park 已提交
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
}

.divider {
    position: absolute !important;
    z-index: 3;
}

.divider.vertical {
    cursor: ew-resize;
}

.divider.horizontal {
    cursor: ns-resize;
}

nav {
    height: 30px;
    width: 100%;
    padding: 0 16px;
}

nav h3 {
    display: inline;
}

.nav-arrow {
    padding: 0 4px;
}

.buttons {
    float: right;
    height: 100%;
}

.sidemenu {
    top: 30px;
    bottom: 0;
    left: 0;
    right: 85%;
    visibility: hidden;
J
Jason Park 已提交
94 95
    overflow: scroll;
    padding-bottom: 120px;
J
Jason Park 已提交
96 97 98 99 100 101
}

.sidemenu.active {
    visibility: visible;
}

J
Jason Park 已提交
102 103 104 105 106
.sidemenu #header {
    border-top: 2px solid rgb(44, 44, 44);
}

.sidemenu button {
J
Jason Park 已提交
107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146
    display: block;
    width: 100%;
    height: 30px;
    text-align: left;
}

.workspace {
    position: absolute;
    top: 30px;
    bottom: 0;
    left: 15%;
    right: 0;
}

nav,
section {
    position: absolute;
    border: 1px solid rgb(44, 44, 44);
    box-sizing: border-box;
}

.viewer_container,
.editor_container {
    position: absolute;
}

.viewer_container {
    top: 0;
    bottom: 0;
    left: 0;
    right: 50%;
}

.editor_container {
    top: 0;
    bottom: 0;
    left: 50%;
    right: 0;
}

J
Jason Park 已提交
147
.module_container {
J
Jason Park 已提交
148 149 150 151
    top: 0;
    bottom: 50%;
    left: 0;
    right: 0;
J
Jason Park 已提交
152
    overflow: hidden;
J
Jason Park 已提交
153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178
}

.tab_container {
    top: 50%;
    bottom: 30px;
    left: 0;
    right: 0;
}

.tab {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: scroll;
    visibility: hidden;
}

.tab > .wrapper {
    padding: 16px;
    box-sizing: border-box;
}

.tab.active {
    visibility: visible;
}

J
Jason Park 已提交
179 180 181 182
#tab_desc > .wrapper a {
    text-decoration: underline;
}

J
Jason Park 已提交
183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208
.tab_bar {
    bottom: 0;
    left: 0;
    right: 0;
    height: 30px;
}

.files_bar {
    left: 0;
    right: 0;
    height: 30px;
}

.explanation_container {
    top: 30px;
    left: 0;
    right: 0;
    height: 30px;
    background: rgb(44, 44, 44);
    padding: 0 8px;
    line-height: 30px;
    font-size: 12px;
}

.data_container {
    top: 60px;
J
tree  
Jason Park 已提交
209
    bottom: 60%;
J
Jason Park 已提交
210 211 212 213 214 215
    left: 0;
    right: 0;
}

.code_container {
    left: 0;
J
tree  
Jason Park 已提交
216
    top: 40%;
J
Jason Park 已提交
217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237
    right: 0;
    bottom: 0;
}

pre {
    box-sizing: border-box;
    height: 100%;
    width: 100%;
    margin: 0;
    padding: 0;
    border: 1px solid rgb(81, 81, 81);
    background: rgb(43, 43, 43);
    outline: none;
    resize: none;
}

.toast_container {
    position: absolute;
    bottom: 0;
    right: 0;
    padding: 12px;
J
Jason Park 已提交
238
    z-index: 4;
J
Jason Park 已提交
239 240 241 242 243 244 245 246 247 248 249 250 251
}

.toast {
    width: 280px;
    border: 1px solid;
    border-radius: 4px;
    padding: 16px;
    margin: 16px;
}

.toast.error {
    border-color: rgb(150, 0, 0);
    background: rgba(120, 0, 0, .8);
J
Jason Park 已提交
252 253
}

J
Jason Park 已提交
254 255 256 257
.github-fork-ribbon {
    position: fixed;
}

J
Jason Park 已提交
258 259 260 261
.github-fork-ribbon.left-bottom:before {
    background-color: #333;
}

J
Jason Park 已提交
262 263 264 265 266
.mtbl-wrapper {
    width: 100%;
    height: 100%;
}

J
Jason Park 已提交
267 268 269 270 271 272 273 274 275 276 277 278 279 280 281
.mtbl-table {
    display: inline-table;
    color: white;
    table-layout: fixed;
}

.mtbl-row {
    display: table-row;
}

.mtbl-cell {
    display: table-cell;
    vertical-align: middle;
    text-align: center;
    background: #888;
282 283 284 285 286 287 288 289
}

.mtbl-cell.selected {
    background: #00f;
}

.mtbl-cell.notifying {
    background: #f00;
J
Jason Park 已提交
290
}