stylesheet.css 4.1 KB
Newer Older
J
Jason Park 已提交
1 2 3 4 5 6 7 8 9 10 11 12
html, body {
    margin: 0;
    padding: 0;
    overflow: hidden;
}

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

G
Gautam krishna.R 已提交
13
*::-webkit-scrollbar {
14
    display: none;
G
Gautam krishna.R 已提交
15 16
}

J
Jason Park 已提交
17 18 19 20 21
a {
    text-decoration: none;
}

* {
22 23 24 25
    color: inherit;
}

*:not(input) {
J
Jason Park 已提交
26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -o-user-select: none;
    user-select: none;
}

button {
    border: none;
    height: 100%;
    padding: 0 12px;
    margin: 0;
    background: none;
    font-size: 12px;
    outline: none;
J
Jason Park 已提交
42 43 44
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
J
Jason Park 已提交
45 46 47 48 49 50 51 52 53 54
}

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

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

J
Jason Park 已提交
55 56 57 58
button.category {
    background: rgba(0, 0, 0, .10);
}

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

.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%;
}

95 96 97 98 99 100 101 102
button input {
    outline: none;
    background: none;
    border: none;
    width: 20px;
    text-align: right;
}

J
Jason Park 已提交
103 104 105 106 107 108
.sidemenu {
    top: 30px;
    bottom: 0;
    left: 0;
    right: 85%;
    visibility: hidden;
J
Jason Park 已提交
109 110
    overflow: scroll;
    padding-bottom: 120px;
J
Jason Park 已提交
111 112 113 114 115 116
}

.sidemenu.active {
    visibility: visible;
}

J
Jason Park 已提交
117 118 119 120 121
.sidemenu #header {
    border-top: 2px solid rgb(44, 44, 44);
}

.sidemenu button {
J
Jason Park 已提交
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 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161
    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 已提交
162
.module_container {
J
Jason Park 已提交
163 164 165 166
    top: 0;
    bottom: 50%;
    left: 0;
    right: 0;
J
Jason Park 已提交
167
    overflow: hidden;
J
Jason Park 已提交
168
    border: none;
J
Jason Park 已提交
169 170 171 172 173 174 175 176 177 178 179 180 181 182
}

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

.tab {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: scroll;
J
Jason Park 已提交
183
    display: none;
J
Jason Park 已提交
184 185 186 187 188 189 190 191
}

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

.tab.active {
J
Jason Park 已提交
192
    display: block;
J
Jason Park 已提交
193 194
}

J
Jason Park 已提交
195 196 197 198
#tab_desc > .wrapper a {
    text-decoration: underline;
}

J
Jason Park 已提交
199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220
.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;
221
    overflow-y: auto;
J
Jason Park 已提交
222 223 224 225
}

.data_container {
    top: 60px;
J
tree  
Jason Park 已提交
226
    bottom: 60%;
J
Jason Park 已提交
227 228 229 230 231 232
    left: 0;
    right: 0;
}

.code_container {
    left: 0;
J
tree  
Jason Park 已提交
233
    top: 40%;
J
Jason Park 已提交
234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254
    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 已提交
255
    z-index: 4;
J
Jason Park 已提交
256 257 258 259 260 261 262 263 264 265 266 267 268
}

.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 已提交
269 270
}

271 272 273 274 275
.toast.info {
    border-color: rgb(0, 150, 0);
    background: rgba(0, 120, 0, .8);
}

J
Jason Park 已提交
276 277 278 279
.github-fork-ribbon {
    position: fixed;
}

J
Jason Park 已提交
280 281 282 283
.github-fork-ribbon.left-bottom:before {
    background-color: #333;
}

J
Jason Park 已提交
284 285 286 287 288
.mtbl-wrapper {
    width: 100%;
    height: 100%;
}

J
Jason Park 已提交
289 290 291 292 293 294 295 296 297 298 299 300 301 302 303
.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;
304 305 306 307 308 309 310 311
}

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

.mtbl-cell.notifying {
    background: #f00;
G
Gautam krishna.R 已提交
312
}