-
Notifications
You must be signed in to change notification settings - Fork 2
/
adminorder.css
69 lines (54 loc) · 878 Bytes
/
adminorder.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
table {
border-collapse: collapse;
width: 85%;
margin: auto;
margin-top: 25px;
}
th, td {
text-align: left;
padding: 15px;
}
th{
background-color: #3b4344;
color: white;
font-family: sans-serif;
}
td{
border: 1px solid grey;
font-family: sans-serif;
}
tr:nth-child(even) {background-color: #f2f2f2;}
body{
margin-top: 0px;
margin-left: 0px;
margin-right: 0px;
}
#headerdiv{
height: 70px;
width: 100%;
border: 1px solid transparent;
background-color:#25A3B4;
font-family: sans-serif;
font-weight: bold;
font-size: 30px;
color: white;
}
#headerdiv>div{
height: 40px;
width: 600px;
border: 1px solid transparent;
margin: auto;
margin-top: 15px;
padding-left: 80px;
}
/* Footer */
.footer {
position: fixed;
left: 0;
bottom: 0;
width: 100%;
background-color: #EFF6FB;
color: black;
text-align: center;
font-family: sans-serif;
}