-
Notifications
You must be signed in to change notification settings - Fork 37
/
common.css
110 lines (103 loc) · 1.66 KB
/
common.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
/* == Redefine html tags == */
* {
font-family: 'Trebuchet MS', Helvetica, Sans-Serif;
font-size: 14px;
}
body {
background: #f3f2f2;
padding: 0; margin: 0;
}
h1 {
border-bottom: solid 2px #999;
margin-top: 0px;
margin-bottom: 10px;
font-size: 24px;
font-weight: bold;
}
h2 {
border-bottom: solid 1px #999;
font-size: 18px;
}
.h3 {
font-weight: bold;
}
a {
text-decoration: none; color: #00F;
}
a:hover {
text-decoration: underline;
}
form {
margin: 0px; padding: 0px;
}
fieldset {
border: solid 1px #999;
}
legend {
font-weight: bold;
}
/* == Classes == */
table.list {
border-collapse: collapse; border-bottom: solid 2px #DDD;
}
table.list td {
border-bottom: solid 1px #DDD; padding: 2px 5px;
}
table.list th {
background: #DDD; padding: 2px 5px;
}
.action_button {
padding: 2px 8px; background: #999; color: #FFF;
cursor: pointer;
}
.search_param {
white-space:nowrap;
}
.footer {
padding-top: 20px;
}
/* Comment module*/
.comment_block {
border: solid 1px #DDD;
margin-bottom: 20px;
background: #EFEFEF;
padding: 0px 15px;
}
.response_block {
font-style:italic;
margin-bottom: 20px;
}
/* == IDs == */
#header {
padding: 0px 5px;
}
#navbar {
background: #36528e;
padding: 5px 10px;
color: #fff;
}
#navbar td,
#navbar a {
color: #fff;
font-size: 95%;
}
#content {
padding: 20px;
background: #fff;
}
#footer {
border-top: solid 3px #36528e;
padding: 10px 5px;
}
#footer p,
#footer a {
font-size: 95%;
}
#home {
width: 600px;
margin: 20px auto;
}
#welcome {
text-align: center;
padding: 10px 0px;
}