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
}

J
Jason Park 已提交
63 64 65 66
button.fold {
    display: none !important;
}

J
Jason Park 已提交
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
.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%;
}

99 100 101 102 103 104 105 106
button input {
    outline: none;
    background: none;
    border: none;
    width: 20px;
    text-align: right;
}

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

.sidemenu.active {
    visibility: visible;
}

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

.sidemenu button {
J
Jason Park 已提交
124 125 126 127 128 129 130 131 132 133 134 135 136 137 138
    display: block;
    width: 100%;
    height: 30px;
    text-align: left;
}

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

nav,
J
Jason Park 已提交
139
section,
J
Jason Park 已提交
140 141 142 143 144 145
.viewer_container,
.editor_container {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
J
Jason Park 已提交
146 147 148 149 150 151 152 153 154 155
    right: 0;
}

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

.viewer_container {
J
Jason Park 已提交
156 157 158 159 160 161 162
    right: 50%;
}

.editor_container {
    left: 50%;
}

J
Jason Park 已提交
163
.module_container {
J
Jason Park 已提交
164
    overflow: hidden;
J
Jason Park 已提交
165
    border: none;
J
Jason Park 已提交
166 167 168
}

.tab_container {
J
Jason Park 已提交
169
    top: 30px;
J
Jason Park 已提交
170 171 172 173 174 175
}

.tab {
    position: absolute;
    width: 100%;
    height: 100%;
J
Jason Park 已提交
176
    visibility: hidden;
J
Jason Park 已提交
177 178 179 180 181 182 183 184
}

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

.tab.active {
J
Jason Park 已提交
185 186 187
    visibility: visible;
}

188 189 190 191
.module_wrapper {
    overflow: scroll;
}

J
Jason Park 已提交
192
.module_wrapper .name {
193 194
    position: fixed;
    z-index: 5;
J
Jason Park 已提交
195 196 197 198 199
    padding: 4px;
    font-size: 14px;
    background: rgb(44, 44, 44);
}

J
Jason Park 已提交
200
.module_wrapper .wrapper {
201
    padding: 24px 16px;
J
Jason Park 已提交
202
    box-sizing: border-box;
J
Jason Park 已提交
203 204
}

J
Jason Park 已提交
205 206 207 208
#tab_desc > .wrapper a {
    text-decoration: underline;
}

J
Jason Park 已提交
209 210 211 212 213 214 215 216 217 218 219 220 221 222 223
.tab_bar {
    height: 30px;
}

.files_bar {
    height: 30px;
}

.explanation_container {
    top: 30px;
    height: 30px;
    background: rgb(44, 44, 44);
    padding: 0 8px;
    line-height: 30px;
    font-size: 12px;
224
    overflow-y: auto;
J
Jason Park 已提交
225 226 227 228
}

.data_container {
    top: 60px;
J
tree  
Jason Park 已提交
229
    bottom: 60%;
J
Jason Park 已提交
230 231 232
}

.code_container {
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
}

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 已提交
253
    z-index: 4;
J
Jason Park 已提交
254 255 256 257 258 259 260 261 262 263 264 265 266
}

.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 已提交
267 268
}

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

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

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

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

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

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

308
.mtbl-cell.notified {
309
    background: #f00;
G
Gautam krishna.R 已提交
310
}