blob: aa1bbd2bdccd032373b44dce92d4455e286ac28d (
plain)
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
|
#cy {
width: 80%;
height: 90%;
position: absolute;
left: 0px;
}
@media (min-width: 768px){
.container{
max-width:90%;
}
}
@media (min-width: 992px){
.container{
max-width:90%;
}
}
a:link {
color: #097DC9;
}
/* A link that has been visited */
a:visited {
color: #097DC9;
}
/* A link that is hovered on */
a:hover {
color: #097DC9;
}
/* A link that is selected */
a:active {
color: #097DC9;
}
* {
box-sizing: border-box;
}
.column {
float: left;
}
.left {
width: 80%;
}
.right {
width: 20%;
}
#searchform{
background:#F8F9F9;
}
|