-
Notifications
You must be signed in to change notification settings - Fork 1
/
style.css
119 lines (100 loc) · 1.62 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
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
body {
font-family: "Helvetica Neue",Helvetica,Arial,sans;
max-width: 25em;
margin: 0 auto;
font-size: 1.1em;
background: #fff;
color: #000;
padding: 0 0.5em;
}
a {
color: #2666A7;
}
input {
display: block;
width: 100%;
margin: 4px 0;
border: 1px solid #ccc;
padding: 5px;
font-size: 1.1em;
border-radius: 0.2em;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
}
input[type=text]:focus {
box-shadow: 0 0 0.2em #0060A9 !important;
outline:none;
border-color: #0060A9;
box-sizing: border-box;
}
input[type=submit] {
width: 48%;
display: inline;
background: #EDECEB;
}
input[type=submit] + input[type=submit] {
float: right;
}
.error {
background: #FFE9EA;
border: 1px solid #FF8389;
padding: 5px;
border-radius: 0.2em;
}
table {
width: 100%;
border-spacing: 0;
border-collapse: collapse;
margin-top:1.1em;
table-layout: fixed;
margin-bottom: 1.5em;
}
th, td {
padding: 5px;
text-align: left;
font-size: 1.1em;
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
}
th {
font-variant: small-caps;
}
th + td {
color: #666;
font-style: italic;
text-align: right;
}
tr:first-child {
border-bottom: 1px solid #666;
background: #eee !important;
}
th, td:nth-child(odd) {
width: 35%;
}
td:nth-child(even) {
width: 65%;
color: #666;
font-weight:normal;
text-align: right;
}
.yarp {
background: #E5F9ED !important;
padding: 5px;
}
.narp {
background: #F9E6E5 !important;
padding: 5px;
}
.highlight {
font-weight: bold;
}
h3 {
margin-bottom: 0em;
}
h3 + p {
margin-top: 0.4em;
}
span {
font-family: monospace;
}