This repository has been archived by the owner on Nov 2, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathmonobass.css
97 lines (81 loc) · 1.49 KB
/
monobass.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
/* Work in-progress */
* { box-sizing: border-box }
body {
font-family: 'Roboto Mono', sans-serif;
font-family: Roboto, sans-serif;
line-height: 1.625;
margin: 0;
color: #111;
background-color: #fff;
}
code, pre, samp, .mono {
font-family: 'Roboto Mono', monospace;
}
a:not(.btn) {
color: #08b;
text-decoration: none;
background-image: linear-gradient(transparent, transparent 93.75%, #0be 93.75%)
}
a:not(.btn):hover {
background-image: linear-gradient(transparent, transparent 87.5%, #0be 87.5%)
}
h1, h2, h3,
h4, h5, h6 {
margin-top: 2em;
margin-bottom: .5em;
}
h1, .h1,
.large {
font-size: 2rem;
}
h2, .h2,
h3, .h3,
h4, .h4 {
font-size: 1rem;
}
h5, .h5,
h6, .h6,
.small {
font-size: .75rem;
}
p,
dl,
ol,
ul,
pre,
blockquote,
hr {
margin-top: 1em;
margin-bottom: 1em;
}
hr {
border: 0;
border-bottom: 1px solid;
}
.btn {
font-family: inherit;
font-size: .75rem;
font-weight: 700;
text-decoration: none;
display: inline-block;
padding: .5rem .75rem;
color: #fff;
background-color: #08b;
border: 0;
border-radius: 2px;
}
.btn:hover {
box-shadow: inset 0 0 0 999px rgba(0, 0, 128, .25);
}
.black { color: #111 }
.white { color: #fff }
.navy { color: #047 }
.blue { color: #08b }
.aqua { color: #0be }
.red { color: #f53 }
.bg-black { background-color: #111 }
.bg-white { background-color: #fff }
.bg-navy { background-color: #047 }
.bg-blue { background-color: #08b }
.bg-aqua { background-color: #0be }
.bg-red { background-color: #f53 }