-
Notifications
You must be signed in to change notification settings - Fork 0
/
projectWork.css
79 lines (71 loc) · 1.38 KB
/
projectWork.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
body {
background-color: rgb(62, 80, 104);
margin: 0;
font-family: Verdana, Geneva, Tahoma, sans-serif;
}
.logo{
background-color: rgba(24,34,75,255);
padding: 15px;
}
.menu {
overflow: hidden;
text-align: left;
justify-content: space-between;
background-color: rgba(24,34,75,255);
padding: 10px 20px ;
}
li{
list-style-type: none;
}
.menu-items a {
display:inline-block;
background: none;
font-size: 20px;
color: #aaaaaa;
border: 0;
padding: 8px;
cursor: pointer;
text-decoration: none;
transition: 1s;
}
.dropdown {
float: left;
overflow: hidden;
}
.dropdown .dropanc{
border: none;
outline: none;
color: #aaaaaa;
padding: 8px;
background-color: inherit;
font-family: inherit;
margin: 0;
}
.menu a:hover, .dropdown:hover .dropanc {
background-color: red;
}
.dropdown-content{
display: none;
position: absolute;
background-color: #f9f9f9;
min-width: 160px;
box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
z-index: 1;
}
.dropdown-content a {
float: none;
color: black;
padding: 12px 16px;
text-decoration: none;
display: block;
}
.dropdown-content a:hover {
background-color: #ddd;
}
.dropdown:hover .dropdown-content {
display: block;
}
.headerImg img {
max-width: 100%;
height: auto;
}