-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathknit.css
175 lines (173 loc) · 4.7 KB
/
knit.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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
*{
font-family: monospace, sans-serif;
font-style: normal;
}
#frame
{
height:1800px;
width:1330px;
margin:0px auto;
}
#header
{
height:200px;
width:1330px;
border-radius:20px 20px 0px 0px;
box-shadow:5px 0px 5px blue;
}
#body
{
height:1200;
width:1330px;
}
#footer
{
height:400px;
width:1330px;
border-bottom:1px lightgray;
}
#login
{
height:199px;
width:400px;
border-top:1px solid gray;
float:left;
background-color:#d3c7ff;
border-radius:0px 20px 0px 0px;
}
#menu
{
height:200px;
width:730px;
float:left;
}
#logo
{
height:199px;
width:200px;
border-top:1px solid gray;
float:left;
background-image:url("Images/KNITlogo.png");
background-size:cover;
background-color:#d3c7ff;
border-radius:20px 0px 0px 0px;
}
#menu1
{
height:99px;
width:730px;
border-top:1px solid gray;
font-size:32px;
font-family:Millenium BdEx BT;
text-align:center;
text-shadow:5px 5px 30px black;
background-color:#d3c7ff;
}
#menu2
{
height:100px;
width:730px;
background-color:#d3c7ff;
}
#menu2 ul
{
list-style-type:none;
margin-left:60px;
//margin-top:50px;
//background-color:black;
}
#menu2 ul li
{
display:inline-block;
padding:15px;
}
#menu2 ul li a:hover
{
color:royalblue;
}
#menu2 ul li a:focus
{
font-size:32px;
}
#menu2 ul a
{
text-decoration:none;
color:black;
font-family:calibri;
}
#search
{
margin:5px 0px 0px 20px;
height:30px;
outline:none;
background-color:#d3c7ff;
border:0px;
}
#search:focus
{
background-color:#d3c7ff;
outline: auto 1px royalblue;
}
#icon
{
background-color:#d3c7ff;
outline:none;
border:0px;
}
#button
{
background-color:white;
border:0px;
color:blue;
border-radius:3px;
height:30px;
width:100px;
margin-left:15px;
}
#notice
{
height:1200;
width:400px;
float:left;
box-shadow:5px 0px 5px blue;
}
#content
{
height:1200;
width:930px;
float:left;
}
#body a
{
text-decoration:none;
font-family:calibri;
font-size:15px;
}
.foot
{
height:340;
width:350;
box-shadow:5px 5px 25px black;
margin:25px;
margin-left:50px;
float:left;
font-family:calibri;
}
#footer ul
{
list-style-type:none;
}
#footer ul li a
{
text-decoration:none;
color:gray;
font-size:20px;
font-family:calibri;
margin-left:15px;
text-shadow:5px 5px 5px lightgray;
}
#footer ul li a:hover
{
color:royalblue;
text-shadow:5px 5px 25px royalblue;
}