-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathdemo.less
55 lines (50 loc) · 814 Bytes
/
demo.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
@c1: #F7F7F7; // cream
@c2: #2D3032; // very dark gray
@c3: #DD5F18; // orange
@c4: #FBA922; // yellow-orange
@c5: #404333; // mustard dark gray
body {
background: @c1;
color: @c2;
margin: 20px;
font-family:Georgia, serif;
letter-spacing:.05em;
line-height:1.5em;
nav {
margin:-20px -15px 20px;
a {
color:@c2;
text-decoration:none;
margin-right:1em;
}
}
h1 {
margin: -20px -20px 20px -20px;
padding:1em 1.2em;
background: @c3;
color: @c5;
}
h2 {
margin: -20px -20px 20px -20px;
padding:1em 1.7em;
background: @c5;
color: @c3;
}
p, pre {
margin:20px;
}
pre.prettyprint {
font-family:Consolas,monospace;
letter-spacing:-0.2pt;
border:0;
font-size:1.2em;
line-height:1.2em;
font-weight:bold;
}
a {
color: @c3;
&:hover {
color:@c4;
}
}
}