-
Notifications
You must be signed in to change notification settings - Fork 2
/
hack.css
115 lines (95 loc) · 1.74 KB
/
hack.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
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
109
110
111
112
113
114
115
html {
font-size: 12px
}
* {
box-sizing: border-box;
text-rendering: geometricPrecision
}
body {
font-size: 1rem;
line-height: 1.5rem;
margin: 0;
font-family: Menlo, Monaco, Lucida Console, Liberation Mono, DejaVu Sans Mono, Bitstream Vera Sans Mono, Courier New, monospace, serif;
word-wrap: break-word
}
h1, h2 {
line-height: 1.3em
}
pre {
/*padding: 1rem;*/
padding: 5px;
/*margin: 1.75rem 0;*/
/*padding: 0 1rem*/
background-color: #fff;
border: 1px solid #ccc;
overflow: auto
}
a {
cursor: pointer;
color: #202DDE;
text-decoration: none;
border-bottom: 1px solid #202DDE
}
a:hover {
background-color: #202DDE;
color: #fff
}
.hack, .hack h1, .hack h2 {
font-size: 1rem;
font-style: normal;
font-family: Menlo, Monaco, Lucida Console, Liberation Mono, DejaVu Sans Mono, Bitstream Vera Sans Mono, Courier New, monospace, serif
}
.hack h1, .hack h2, .hack li, .hack ul {
font-size:13px;
float: none;
margin: 0;
padding: 0
}
.hack h1, .hack ul {
margin-top: 20px;
margin-bottom: 20px
}
.hack h1:before {
content: "# "
}
.hack h2 {
position: relative;
margin-bottom: 1.75rem
}
.hack h2:before {
display: inline
}
.hack h2:before {
content: "## "
}
.hack li {
position: relative;
display: block;
padding-left: 20px
}
.hack li:after {
position: absolute;
top: 0;
left: 0
}
.hack ul > li:after {
content: "-"
}
.container {
/*max-width: 43rem*/
max-width: 60rem
}
img {
width:auto;
height:auto;
max-width: 30rem;
}
.container, .container-fluid {
margin: 0 auto;
padding: 0 1rem
}
.center {
display: block;
margin-left: auto;
margin-right: auto;
}