-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathmicrostrap.css
142 lines (135 loc) · 2.27 KB
/
microstrap.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
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
/*!
This file is only available under the MIT License, as it's a derivative work of Bootstrap.
This file is not available under a Creative Commons license.
*/
/*!
* Based on:
* Bootstrap v4.0.0-alpha.2 (http://getbootstrap.com)
* Copyright 2011-2015 Twitter, Inc.
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
*/
/* Typography and spacing */
h1, h2, footer, .table {
font-family: Helvetica,Arial,sans-serif;
}
h1, h2 {
margin-top: 0;
}
h2 {
margin-bottom: 0.5rem;
}
p {
margin-top: 0;
margin-bottom: 1rem;
}
p, .table {
line-height: 1.42857143;
}
footer {
margin-top: 2rem;
}
a {
color: #0275d8;
}
a:focus, a:hover {
color: #014c8c;
}
code, pre {
font-family: Menlo,Monaco,Consolas,"Courier New",monospace;
background-color: #f7f7f9;
}
code {
color: #bd4147;
font-size: 90%;
padding: .2rem .4rem;
border-radius: .25rem;
}
pre {
display: inline-block;
padding: 0.75rem;
margin-top: 0;
}
.text-center {
text-align: center;
}
.text-left {
text-align: left;
}
.container {
padding-right: 15px;
padding-left: 15px;
margin-right: auto;
margin-left: auto;
}
@media (min-width: 768px) {
.container {
width: 750px;
}
}
@media (min-width: 992px) {
.container {
width: 970px;
}
}
@media (min-width: 1200px) {
.container {
width: 1170px;
}
}
/* Tables */
.table {
border-spacing: 0;
border-collapse: collapse;
}
.table thead th {
color: #55595c;
background-color: #eceeef;
vertical-align: bottom;
border-bottom: 2px solid #55595c;
}
.table tbody td {
text-align: center;
}
.table-bordered {
border: 1px solid #55595c;
}
.table-bordered td,
.table-bordered th {
border: 1px solid #55595c;
}
.table-bordered thead th,
.table-bordered thead td {
border-bottom-width: 2px;
}
.scroll-x {
min-height: .01%;
overflow-x: auto;
}
/* END Bootstrap-based styles */
/* Vertically align the browser logos */
.thead-browsers tr:first-child th {
border-bottom: none;
}
.thead-browsers tr:nth-child(2) th {
border-top: none;
vertical-align: middle;
}
.twitter {
text-decoration: none;
}
.note:target {
outline: solid red 2px;
}
/* Test results */
.yes {
background-color: limegreen;
}
.no {
background-color: red;
}
.unknown {
background-color: #fdee00;
}
.empty {
background-color: #eceeef;
}