-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
67 lines (56 loc) · 879 Bytes
/
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
* {
padding: 0;
margin: 0;
font-family: sans-serif;
}
a {
text-decoration: none;
color: #6589b9;
}
.container {
width: 93%;
margin: 0 auto;
}
.container::after {
content: '';
display: block;
clear: both;
}
header {
background-color: #3b5998;
}
h1 {
float: left;
padding: 15px 0px;
display: inline-block;
}
ul {
float: right;
}
header ul li {
display: inline-block;
}
header h1 a{
color: #fff;
}
header ul li a {
padding: 25px 20px;
display: inline-block;
color: #fff;
}
main {
height: 73vh;
border: 1px solid;
padding: 20px 50px;
color: #535998;
}
main p {
margin: 20px 0;
color: #6589b9;
}
footer {
padding: 30px 0px;
background-color: #3b5998;
text-align: center;
color: #fff;
}