-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
68 lines (57 loc) · 831 Bytes
/
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
body
{
background-color: #5c87b2;
}
body, textarea, table
{
font-family: Verdana, Helvetica, Sans-Serif;
font-size: 12px;
}
#header
{
width:960px;
margin-left: auto;
margin-right: auto;
position: relative;
}
#header h1
{
font-size: 32px;
color: #fff;
margin: 0;
}
#main
{
margin-left: auto;
margin-right: auto;
padding: 10px 30px;
background-color: #fff;
width:900px;
}
input[type="text"], textarea
{
border: 1px solid #ccc;
}
/* table */
table.grid
{
width: 100%;
border: solid 1px #e8eef4;
border-collapse: collapse;
}
table.grid tr:hover
{
background-color: #f4f4f4;
}
table.grid th
{
text-align:center;
padding: 6px 5px;
background-color: #e8eef4;
border: solid 1px #e8eef4;
}
table.grid td
{
padding: 5px;
border: solid 1px #e8eef4;
}