-
Notifications
You must be signed in to change notification settings - Fork 22
/
index.css
117 lines (100 loc) · 2.27 KB
/
index.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
body {
font-family: 'Telex', sans-serif;
margin: 10px;
}
a {
text-decoration: none;
}
a:link,
a:visited {
color: #08d;
}
#svg-image {
width: 800px;
}
#ribbon {
position: absolute;
top: 0;
right: 0;
border: 0;
}
#main {
width: 850px;
}
#ad {
position: absolute;
left: 875px;
top: 87px;
}
#kicad-pcb-save-link,
#svg-and-kicad-pcb-save-links,
#advanced-options,
#report-help,
#segmentation-notification,
.invalid-input
{
display: none;
}
.invalid-input {
color: #f00;
}
#segmentation-notification {
border-left: 8px solid #aaa;
padding-left: 5px;
margin: 10px 0;
}
.upgrade-browser-notification,
.firefox-notification {
background-color: #f88;
padding: 10px;
display: none;
}
.upgrade-browser-notification a:link,
.upgrade-browser-notification a:visited {
color: #00f;
}
.float-input {
width: 100px;
}
/* The styles below were borrowed from http://www.456bereastreet.com/archive/201105/styling_ordered_list_numbers/ */
ol.main-list {
counter-reset:li; /* Initiate a counter */
margin-left:0; /* Remove the default left margin */
padding-left:0; /* Remove the default left padding */
}
ol.main-list > li {
position:relative; /* Create a positioning context */
margin:0 0 6px 2em; /* Give each list item a left margin to make room for the numbers */
padding:4px 8px; /* Add some spacing around the content */
list-style:none; /* Disable the normal item numbering */
border-top:2px solid #666;
}
ol.main-list > li:before {
content:counter(li); /* Use the counter as content */
counter-increment:li; /* Increment the counter by 1 */
/* Position and style the number */
position:absolute;
top:-2px;
left:-2em;
-moz-box-sizing:border-box;
-webkit-box-sizing:border-box;
box-sizing:border-box;
width:2em;
/* Some space between the number and the content in browsers that support
generated content but not positioning it (Camino 2 is one example) */
margin-right:8px;
padding:4px;
border-top:2px solid #666;
color:#fff;
background:#666;
font-weight:bold;
font-family:"Helvetica Neue", Arial, sans-serif;
text-align:center;
}
li ol,
li ul {
margin-top:6px;
}
ol ol li:last-child {
margin-bottom:0;
}