-
Notifications
You must be signed in to change notification settings - Fork 1
/
style.less
84 lines (73 loc) · 1.45 KB
/
style.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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
@font-face {
font-family: 'SourceCodePro';
font-style: normal;
font-weight: 400;
src: url(sourcecode_pro/SourceCodePro-Regular.otf);
}
@font-face {
font-family: 'SourceCodePro';
font-style: normal;
font-weight: 700;
src: url(sourcecode_pro/SourceCodePro-Bold.otf);
}
@font-face {
font-family: 'SourceCodePro';
font-style: normal;
font-weight: 900;
src: url(sourcecode_pro/SourceCodePro-Black.otf);
}
@font-face {
font-family: 'SourceCodePro';
font-style: normal;
font-weight: 500;
src: url(sourcecode_pro/SourceCodePro-Semibold.otf);
}
@font-face {
font-family: 'SourceCodePro';
font-style: normal;
font-weight: 200;
src: url(sourcecode_pro/SourceCodePro-Light.otf);
}
@font-face {
font-family: 'SourceCodePro';
font-style: normal;
font-weight: 200;
src: url(sourcecode_pro/SourceCodePro-ExtraLight.otf);
}
@font-face {
font-family: 'SourceCodePro';
font-style: italic;
font-weight: 400;
src: url(sourcecode_pro/SourceCodePro-Light.otf);
}
body {
margin:0px;
padding: 0px;
background: #eee;
font-family: "SourceCodePro";
font-size: small;
}
.side {
position: fixed;
top: 0;
background: #000;
width: 200px;
height: 100%;
z-index: -10;
}
.cnt {
margin: 30px;
margin-left: 220px;
}
h1,h2,h3,h4,h5,h6 {
color: #eee;
margin-left: -200px;
margin-bottom: -1em;
z-index: 10;
width: 100%;
border-top: 1px solid rgba(0,0,0,0.2);
text-transform: uppercase;
}
h1 {
font-weight: 900;
}