-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
125 lines (104 loc) · 1.67 KB
/
style.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
116
117
118
119
120
121
122
123
124
125
html {
font-family: "Hasklig", "Lucida Console", monospace;
font-size: 1.0em;
}
p {
margin: 0em 0em 0.5em 0em;
}
a {
color: #000;
}
pre {
background: #f1f1f1;
padding: 10px;
overflow-x: scroll;
}
.logo img {
display: none;
}
.logo {
padding: 1em;
position: fixed;
top: 1em;
right: 1em;
}
.logo li:only-child {
display: none;
}
.args {
background-color: #f1f1f1;
padding: 3px;
display: inline-block;
margin-top: 0.3em;
margin-bottom: 0.3em;
white-space: normal;
}
ul {
list-style-type: none;
line-height: 1.6em;
}
.title {
font-size: 1.5em;
}
.content {
margin: 3em auto auto auto;
width: 70%;
max-width: 650px;
}
.module-description {
padding-bottom: 0.5em;
margin-bottom: 3.5em;
border-bottom: 5px solid #aaa;
}
h1 {
margin-bottom: 1.5em;
}
h3 {
margin: 0em;
}
.anchor {
color: #000;
text-decoration: none;
}
.anchor:hover {
text-decoration: underline;
}
.binder {
margin: 0em 0em 3.5em 0em;
}
.sig {
font-family: "Hasklig", "Lucida Console", monospace;
background-color: #f1f1f1;
}
code {
font-family: "Hasklig", "Lucida Console", monospace;
background-color: #f1f1f1;
}
.description {
margin-top: 0.5em;
margin-bottom: 0.5em;
font-size: 0.8em;
color: #aaa;
}
/* Smaller screens */
@media only screen and (max-width: 1000px) {
.logo {
margin: 1em;
text-align: left;
float: left;
width: 100%;
position: inherit;
}
.content {
margin: 0.5em;
}
.binder {
margin: 0em 0em 1.5em 0em;
}
.sig {
font-size: 0.9em;
}
ul {
padding: 0px;
}
}