summaryrefslogtreecommitdiff
path: root/public/css/index.css
blob: b3a6bae5fff3445bec453771a80b494c1a2c2d50 (plain)
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
@import url(https://fonts.googleapis.com/css?family=Source+Code+Pro&subset=latin,latin-ext);
 body {
    margin: 0;
    padding: 0;
    max-width: inherit;
    min-width: 200px;
    height: 100%;
    /*margin-right: 15px;*/
    padding-top: 50px;
    /*overflow: hidden;*/
}
html,
form,
.row,
.row > * {
    height: 100%;
    min-height: 100%;
}
.CodeMirror {
    font-family: 'Source Code Pro', Consolas, monaco, monospace;
    line-height: 18px;
    font-size: 16px;
    /*height: auto;*/
    min-height: 100%;
    overflow-y: hidden !important;
    -webkit-overflow-scrolling: touch;
}
.CodeMirror-scroll {
    overflow-x: hidden !important;
    overflow-y: auto !important;
}
.CodeMirror-code {
    /*padding-bottom: 72px;*/
}
.CodeMirror-linenumber {
    opacity: 0.5;
    width: 29px;
}
.CodeMirror-matchingtag {
    background: rgba(255, 255, 255, .1);
    line-height: 1em;
}
.CodeMirror-foldmarker {
    color: #d0d0d0;
    text-shadow: none;
    font-family: Arial;
    line-height: .3;
    cursor: pointer;
    margin: 2px;
}
.row {
    margin-left: 0;
    margin-right: 0;
}
.ui-edit-area {
    /*padding-left: 15px;*/
    padding-left: 0 !important;
    padding-right: 0 !important;
}
.ui-view-area {
    /*overflow-y: scroll;*/
    -webkit-overflow-scrolling: touch;
}
.ui-scrollable {
    height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
}
.ui-status * {
    font-size: 16px;
}
.nav-status .ui-status * {
    font-size: 14px;
}
.nav-mobile {
    position: relative;
    margin-top: 8px;
    margin-bottom: 8px;
}
.nav-status {
    float: right !important;
    padding: 7px 8px;
}
.ui-status {
    min-width: 120px;
}
.ui-short-status {
    min-width: 40px;
}
.navbar-right {
    margin-right: 0;
}
.other-cursors {
    position:relative;
    z-index:3;
}
.other-cursor {
    width: 0px;
    position: absolute;
    border-right: none;
}
.fixfixed .navbar-fixed-top {
    position: absolute !important;
}
div[contenteditable]:empty:not(:focus):before{
    content:attr(data-ph);
    color: gray;
}