-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
102 lines (100 loc) · 1.58 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
102
*{
margin: 0;
padding: 0;
}
#container{
width: 1200px;
height: 733px;
margin: 0 auto;
}
#header{
background-color: #63e0ff;
width: 1200px;
height: 40px;
padding: 30px 0px;
}
#header h1{
text-align: center;
letter-spacing: 2px;
font-size: 50px;
font-family: "cooper black";
}
#nav{
background-color: black;
width: 1200px;
height: 50px;
}
#nav ul{
list-style: none;
}
#nav ul li{
font-size: 30px;
float: left;
background: black;
color: white;
width: 200px;
padding: 8px;
text-align: center;
}
#nav ul li:hover{
background: #63e0ff;
color: black;
}
#nav a{
color: white;
}
#nav a:hover{
color: black;
}
#main{
background-color: #dedede;
width: 1200px;
height: 500px;
}
#left{
background-color: lightblue;
width: 700px;
height: 500px;
float:left;
}
#right{
background-color: lightgreen;
width: 500px;
height: 500px;
float:left;
}
#footer{
background-color: #63e0ff;
width: 1200px;
height: 83px;
}
form{
width:400px;
background-color: silver;
padding: 20px;
border: 2px solid black;
margin: 0 auto;
}
input[type="text"], input[type="password"] {
width: 200px;
border: 1px solid black;
}
textarea{
resize: none;
border: 1px solid black;
}
input[type="submit"]{
border: 1px solid black;
}
a:link{
color: blue;
}
a:visited{
color: purple;
}
a:hover{
color: orange;
}
a:active{
color:green;
}