-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstyle.css
101 lines (86 loc) · 1.45 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
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
101
html, BODY { font-family: "Calibri", Verdana, Arial;
color: #3350ae;
padding:10;
margin: 10;
text-align: left;
height: 100%;
width: 1000px;
}
#container {
width: 1000px;
position: relative;
}
#header {
width: 1000px;
position: relative;
height: 250px;
}
#search {
position: relative;
text-align: right;
top: 30px;
vertical-align: bottom;
}
#logo {
position: relative;
text-align: left;
top: -30px;
left: 0px;
float: left;
}
#menu {
position: relative;
top: 30px;
left: 20px;
float: left;
}
#page {
position: relative;
top: -50px;
width: 800px;
margin-left: 100px;
margin-right: 80px;
}
.inputreg {
background-color: #d9e2ff;
border: solid 1px #3350ae;
font-family: "Calibri", Verdana, Arial;
font-size: 14px;
padding: 6px;
}
a, a:active {
color: #3350ae;
text-decoration: none;
}
a:hover {
color: #3350ae;
text-decoration: underline;
}
.bottom {
font-size: 14px;
}
/*CSS FOR SUGGEST DIV STARTS HERE*/
#suggest_div ul {
margin: 5px;
padding-left: 0;
list-style-type: none;
border-top: 1px solid #3350ae;
font-family: "Calibri", Arial, Helvetica, sans-serif;
}
#suggest_div a {
display: block;
padding: 3px;
/* background-color: #036;*/
background-color: #d9e2ff;
border-bottom: 1px solid #3350ae;
}
#suggest_div a:link, #suggest_div a:visited {
color: #000;
text-decoration: none;
}
#suggest_div a:hover {
/* background-color: #369;*/
background-color: #514C65;
color: #EEE;
}
/*CSS FOR SUGGEST DIV ENDS HERE*/