-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathnavbar.css
107 lines (98 loc) · 1.84 KB
/
navbar.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
103
104
105
106
107
#navbar {
display: flex;
width: 80%;
/* height: 40px; */
margin: auto;
justify-content: space-between;
/* position: sticky; */
/* position: static; */
/* position: fixed; */
}
#navJob {
display: flex;
width: 30%;
justify-content: space-evenly;
/* align-items: center; */
/* border: 1px solid; */
height: 40px;
}
#navJob > div {
font-size: 18px;
color: grey;
}
#navbtn > button {
padding: 10px 20px;
font-weight: bold;
font-size: 18px;
border: 0;
border-radius: 20px;
}
#navbtn {
display: flex;
width: 20%;
justify-content: space-around;
/* align-items: center; */
margin-left: 20px;
}
#navbtn > button:first-child {
color: rgb(122, 122, 226);
border: 1px solid rgb(122, 122, 226);
font-size: 16px;
}
#navbtn > button:first-child:hover {
background-color: rgb(133, 238, 164);
color: black;
border: 0;
cursor: pointer;
}
#navbtn > button:last-child {
color: white;
background-color: rgb(241, 77, 77);
font-size: 16px;
}
#navEmploy {
padding: 14px;
border: 0;
font-size: 16px;
margin-top: 2px;
}
#navJob > div:first-child:hover {
cursor: pointer;
}
/* #navbar + div {
text-align: center;
margin: auto;
margin-top: 40px;
} */
#navbar + div > h3 {
margin-top: -10px;
color: grey;
}
.hov1,
.hov2,
.hov3,
.hov4 {
width: 10px;
display: none;
line-height: 12px;
color: teal;
}
#com1:hover > .hov1,
#com2:hover > .hov2,
#com3:hover > .hov3,
#com4:hover > .hov4 {
display: block;
opacity: 1;
}
#navbar > div > img {
margin-top: 14px;
}
#navbar{
padding: 20px 0px 20px 0;
cursor: pointer;
}
#navbar p:hover{
border-bottom: 3px solid red;
color: black;
font-weight: bold;
}