-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
92 lines (66 loc) · 1.04 KB
/
Copy pathstyle.css
File metadata and controls
92 lines (66 loc) · 1.04 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
html{
box-sizing: border-box;
}
body{
background-color: rgb(212, 191, 191);
}
.header, .main, .footer{
margin:10px auto;
width: 80%;
}
/* Header css */
.header{
height: 100px;
background-color: rgb(56, 56, 190);
margin:10px 150px;
/* overflow: hidden; */
}
.logo{
float:left;
}
.logo img{
height: 80px;
width: 80px;
margin: 10px;
}
img{
height: 60px;
width: 60px;
}
.nav {
float: right;
margin-top: 23px;
}
.nav ul li{
list-style: none;
display: inline;
}
.nav ul li:not(:last-child){
margin-right: 100px;
}
.nav ul li:last-child{
margin-right: 10px;
}
.nav ul li a{
text-decoration: none;
color: #fff;
border: 1px solid black;
padding: 5px;
}
.nav ul li a:hover{
background-color: aquamarine;
}
/* header css end */
.main{
background-color: rgb(70, 70, 161);
height: 100vh;
}
.footer{
background-color: rgb(56, 56, 190);
height: 100px;
}
.footer p {
color: #fff;
text-align: center;
line-height: 6em;
}