-
Notifications
You must be signed in to change notification settings - Fork 262
/
example.less
63 lines (53 loc) · 861 Bytes
/
example.less
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
/*
// Examples Stylesheet
// -------------------
*/
body {
font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
font-size: 14px;
color: #333;
margin: 0;
padding: 0;
}
a {
color: #08c;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
.container {
margin-left: auto;
margin-right: auto;
max-width: 720px;
padding: 1em;
}
.footer {
margin-top: 50px;
border-top: 1px solid #eee;
padding: 20px 0;
font-size: 12px;
color: #999;
}
h1, h2, h3, h4, h5, h6 {
color: #222;
font-weight: 100;
margin: 0.5em 0;
}
label {
color: #999;
display: inline-block;
font-size: 0.85em;
font-weight: bold;
margin: 1em 0;
text-transform: uppercase;
}
.hint {
margin: 15px 0;
font-style: italic;
color: #999;
}
.ReactCodeMirror {
border: 1px solid #ccc;
}
@import (inline) "../../node_modules/codemirror/lib/codemirror.css";