-
Notifications
You must be signed in to change notification settings - Fork 2
/
style.css
47 lines (46 loc) · 1.03 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
body {
background-color: #e1ddd9;
font-size: 12px;
font-family: Verdana, Arial, Helvetica, SunSans-Regular,
Sans-Serif;
color:#564b47;
padding:20px;
margin:0px;
text-align: center;
}
div#contentarea {
text-align: left;
vertical-align: middle;
margin: 0px auto;
padding: 0px;
width: 550px;
background-color: #ffffff;
border: 1px #564b47;
}
div#innercontentarea{ padding: 10px 50px; }
div#innercontentarea form input[type=text]{ width: 435px; }
div#innercontentarea form textarea[name=content] { width: 435px; }
table.articles {
font-size: 12px;
width: 100%;
line-height: 1;
text-align: left;
}
table.articles th{
border-bottom: 1px solid #ccc;
padding: 8px 0;
font-weight: bold;
}
table.articles td {
border-bottom: 1px solid #eee;
padding: 6px 0;
}
div#navigation {
margin: 0px 150px;
padding: 5px 90px;
text-align:center;
}
div#navigation div.prev { display:block; float:left; width:40%; }
div#navigation div.page-number { float:left; width:20%; }
div#navigation div.next { float:right; width:40%; }
.clear { clear: both; }