-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathstyles.css
83 lines (71 loc) · 1.17 KB
/
styles.css
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
* {
box-sizing: border-box;
}
body {
background: #F1F1F1;
padding: 20px;
font-family: 'Raleway', sans-serif;
color: #222222;
font-size: 14px;
}
h1, h2, h3, h4, h5 {
font-family: 'Exo', sans-serif;
}
textarea {
font-family: 'Raleway', sans-serif;
font-size: 14px;
}
.editor {
overflow: auto;
height: 160px;
width: 100%;
border: 1px solid #dadada;
border-radius: 4px;
padding: 5px 8px;
outline: 0 none;
margin: 10px 0;
background: white;
}
iframe.editor {
padding: 0;
}
.editor:focus {
border: 1px solid #5ABBF6;
}
.offset-y-line, .offset-x-line {
position: absolute;
z-index: 999;
opacity: 0.8;
}
.offset-y-line {
border-left: 1px dashed magenta;
height: 100%;
top: 0;
left: -1px;
}
.offset-x-line {
border-bottom: 1px dashed cyan;
width: 100%;
top: -1px;
left: 0;
}
.indicators {
position: absolute;
background: #000;
opacity: 0.75;
border-radius: 6px;
border-top-left-radius: 0;
color: #fff;
padding: 5px;
margin-top: 2px;
}
.indicators > .offset-indicator {
z-index: 999;
padding: 0 3px;
border-radius: 3px;
}
.indicators > .position-indicator {
bottom: -50px;
padding: 0 3px;
border-radius: 3px;
}