-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy patheds.css
More file actions
100 lines (95 loc) · 1.75 KB
/
eds.css
File metadata and controls
100 lines (95 loc) · 1.75 KB
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
*{
margin: 0;
padding: 0;
}
.banner{
margin-top: 10px;
}
#menu ul{
list-style-type: none;
background: rgb(37,119,26);
text-align: center;
}
#menu ul li{
color: #f1f1f1;
display: inline-table;
width: 120px;
height: 40px;
line-height: 40px;
}
#menu ul li a{
color: #f1f1f1;
text-decoration: none;
display: block;
}
#menu ul li a:hover{
color: coral;
}
.column {
float: left;
width: 20%;
padding: 15px;
text-align: justify;
font-size: 12px;
line-height: 1.0;
}
.columnside{
float: left;
width: 80%;
padding: 15px;
text-align: justify;
font-size: 15px;
line-height: 1.5;
}
.columnside a{
text-decoration: none;
color: black;
}
.column.side{
width: 30%;
}
/* Clear floats after the columns */
.row:after {
content: "";
display: table;
clear: both;
}
.row{
margin-left: 30px;
margin-right: 30px;
}
/* Responsive layout - makes the three columns stack on top of each other instead of next to each other */
@media screen and (max-width:600px) {
.column {
width: 100%;
}
}
/* Responsive layout - makes the three columns stack on top of each other instead of next to each other */
@media screen and (max-width: 600px) {
.column.side, .column.middle {
width: 100%;
}
}
/* Style the footer */
.footer {
background-color: #f1f1f1;
padding: 10px;
text-align:left;
font-size: 12px;
}
.footer table{
margin-left: 50px;
margin-right: 50px;
}
.footer td p{
line-height: 0.8;
font-size: 13px;
}
.footer img{
width: 50px;
height: 50px;
}
#search{
width: 220px;
border-radius: 10px;
}