-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
styles.css
91 lines (91 loc) · 1.49 KB
/
styles.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
a {
color: inherit;
outline: none;
text-decoration: none;
}
a:hover,
a:focus {
text-decoration: underline;
}
body {
color: #222222;
font: 400 1rem/1.4 'Lusitana', serif;
margin: 0 auto;
max-width: 50rem;
text-align: center;
}
code {
border-radius: 0.3rem;
display: block;
font-family: 'Source Code Pro', monospace;
margin: 1rem 0;
padding: 0.5rem;
}
h1,
h2,
h3,
h4,
h5,
h6 {
color: #333333;
font-weight: 400;
margin: 2rem 0 1rem;
}
header {
padding: 5rem 0;
}
header h1,
header h3 {
margin: 0;
}
hr {
background: #cccccc;
background: linear-gradient(to right, #ffffff 0%, #cccccc 47%, #ffffff 100%);
border: none;
height: 1px;
width: 100%;
}
p {
font: 400 1rem/1.4 'Roboto', sans-serif;
text-align: left;
margin: 1rem 0;
}
section {
margin: 3rem 0;
}
table {
border-spacing: 0;
font: 400 1em/1.4 'Roboto', sans-serif;
width: 100%;
}
th,
td {
font-weight: 400;
padding: 0.5em 1em;
}
/* $Classes */
.clear-fix { zoom: 1; }
.clear,
.clear-both { clear: both; }
.clear-left { clear: left; }
.clear-right { clear: right; }
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.text-bold { font-weight: 600; }
.text-italic { font-style: italic; }
.float-center { margin: 0 auto; }
.float-left { float: left; }
.float-right { float: right; }
.weight-500 { font-weight: 500; }
.monospace {
font-family: 'Source Code Pro', monospace;
}
.pre-line {
text-align: center;
white-space: pre-line;
}
.pre-block {
text-align: left;
white-space: pre-wrap;
}