-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhome_style.css
More file actions
123 lines (102 loc) · 1.48 KB
/
home_style.css
File metadata and controls
123 lines (102 loc) · 1.48 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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
*{
margin: 0;
padding: 0;
}
#container {
width: 1200px;
margin:0 auto;
border: 1px solid black;
font-family: sans-serif;
}
#header {
background: black;
width: 1180px;
padding: 20px 10px;
color: white;
}
#header h1 {
text-align: center;
font-size: 50px;
}
#nav{
background:#ff4300;
width: 1200px;
}
#nav ul{
list-style: none;
}
#nav ul li{
float: left;
width: 240px;
padding: 15px 0;
text-align: center;
}
#nav ul li:hover{
background: #002eff;
color: white;
}
#nav a{
color: black;
}
#left {
width: 800px;
height: 600px;
float: left;
}
#post {
margin: 20px;
}
.title {
background: black;
padding: 15px 10px;
color: white;
font-size: 25px;
font-weight: bold;
}
.description {
background: #c2e1ea;
padding: 20px;
}
#right {
width: 360px;
height: 600px;
float: left;
padding: 20px;
}
#latest_post_group {
margin: 10px 0;
}
.latest_post {
background: black;
padding: 10px 0;
color: white;
text-align: center;
margin: 10px 0;
}
.news_letter_head {
text-align: center;
font-size: 25px;
}
input[type="text"]{
width: 350px;
height: 30px;
}
input[type="submit"]{
width: 355px;
margin: 10px 0;
background: black;
color: white;
padding: 10px 0;
border: none;
font-size: 20px;
}
input[type="submit"]:hover{
background: #5489e5;
cursor: pointer;
}
#footer{
background: black;
color: white;
text-align: center;
padding: 20px;
}