forked from absence/absence.github.com
-
Notifications
You must be signed in to change notification settings - Fork 0
/
page.css
88 lines (74 loc) · 1.11 KB
/
page.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
@font-face {
font-family: 'inconsolata';
src: url('inconsolata.woff') format('woff');
font-weight: normal;
font-style: normal;
}
body {
margin: 25px 20px;
color: #555;
font-family: 'inconsolata';
font-size: 15px;
line-height: 18px;
overflow: auto;
max-width: 900px;
}
a {
color: #1184CE;
}
h1 {
color: #333;
font-size: 25px;
font-weight: normal;
margin-top: 10px;
}
h2 {
color: #4B0;
font-size: 24px;
font-weight: 600;
margin-top: 40px;
}
h3 {
color: #000;
font-size: 18px;
font-weight: bold;
margin-top: 50px;
}
div {
/* padding-left: 30px; */
margin-bottom: 20px;
}
div.desc {
padding-left: 0px;
}
pre, code {
margin-top: 20px;
margin-bottom: 10px;
}
code {
display: block;
width: -webkit-calc( 100% - 40px );
width: -moz-calc( 100% - 40px );
width: calc( 100% - 40px );
padding: 20px;
white-space: pre-line;
background-color: #f9f9f9;
overflow: auto;
}
strong {
color: #000;
font-weight: normal;
}
#button {
position: fixed;
top: 20px;
right: 20px;
padding: 8px;
color: #fff;
background-color: #555;
opacity: 0.5;
}
#button:hover {
cursor: pointer;
opacity: 1;
}