-
Notifications
You must be signed in to change notification settings - Fork 0
/
simple.css
86 lines (86 loc) · 1.27 KB
/
simple.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
body {
font-family: sans-serif;
font-size: 10pt;
background: #fff;
color: #000;
max-width: 750px;
margin-left: auto;
margin-right: auto;
}
.error { color: #f33; }
.pre {
font-family: monospace;
}
a:link, a:visited {
color: #000;
text-decoration: none;
border-bottom: 1px dashed #999;
}
ul li {
line-height: 1.4em;
}
#title {
margin-top: 0.1em;
margin-bottom: 0.7em;
}
#title h1 {
margin-top: 0em;
margin-bottom: 0.1em;
font-weight: normal;
}
#title #realname {
margin-top: 0.1em;
margin-bottom: 0.1em;
}
#searchbar {
width: 100%;
text-align: left;
font-family: "Segoe UI", Arial, sans-serif
margin-top: 0.2em;
margin-bottom: 0.3em;
}
input#q {
width: 33%;
}
td { padding: 0.2em; }
.box {
color: #000;
background: #eee;
border: 1px solid #ccc;
padding: 0.2em;
margin-top: 0.5em;
margin-bottom: 0.5em;
}
.box > * {
margin: 0.2em;
}
.box h2 {
margin-top: 0em;
}
p, .box.content p {
margin-top: 0.5em;
margin-bottom: 0.5em;
line-height: 130%;
}
.footer {
font-size: small;
font-style: italic;
text-align: right;
color: black;
}
p.more {
font-size: smaller;
}
input {
background: #fff;
color: #000;
border: 1px solid #ba9;
font-family: "Segoe UI", Arial, sans-serif;
}
input.sshkey {
font-family: monospace;
width: 99%;
}
.comment {
color: rgba(0,0,0,0.5);
}