-
Notifications
You must be signed in to change notification settings - Fork 2
/
style.css
86 lines (69 loc) · 1.91 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
@-moz-document url-prefix("http://stackoverflow.com"), url-prefix("https://stackoverflow.com") {
/**
* General.
*/
/* font settings */
body {
font-family : Arial, "Liberation Sans", "DejaVu Sans", sans-serif !important;
}
/* Tags. */
.post-tag {
border-bottom-color : rgb(179, 206, 225) !important;
border-right-color : rgb(179, 206, 225) !important;
}
/* Buttons. */
input[type=submit], input[type=button], .button, a.button:link, a.button:visited, .btn {
background-color : #444444 !important;
border-color : #222222 !important;
}
/**
* Question list.
*/
/* Title links. */
h3 > a, .result-link a {
font-family : 'Trebuchet MS', 'Liberation Sans', 'DejaVu Sans', sans-serif !important;
font-size : 17px !important;
font-weight : bold !important;
}
/* Votes, answers, views. */
div.cp {
font-family : Arial, 'Liberation Sans', 'DejaVu Sans', sans-serif !important;
}
.votes, .status, .views {
font-size : 13px !important;
font-weight : normal !important;
}
div.cp > .status {
width : 48px !important;
}
div.cp .mini-counts {
font-size : 20px !important;
font-weight : normal !important;
}
/**
* Question page.
*/
/* Share, edit, close, flag link separator. */
.lsep {
color : #cccccc !important;
font-size : 110% !important;
visibility : visible !important;
}
/* Question header. Duh. */
#question-header {
padding : 0 !important;
}
#question-header h1 {
margin-bottom : 7px !important;
}
/* Code. */
code {
font-size : 14px !important;
}
h1 code, h2 code, h3 code {
font-size : 0.9em !important;
}
.comment-copy code {
font-size : inherit !important;
}
}