-
Notifications
You must be signed in to change notification settings - Fork 1
/
navbar.css
80 lines (65 loc) · 1.14 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
body {
margin: 0px;
padding: 0px;
font-family: sans-serif;
}
#navbar {
display: flex;
grid-template-columns: repeat(2, 1fr);
width: 99%;
height: 55px;
padding: 5px;
justify-content: space-between;
margin: auto;
align-items: center;
font-size: 16px;
border-bottom: 1px solid gray;
background-color: #2d2d2d;
color: white;
margin-bottom: 1%;
}
P>a{
text-decoration: none;
color: white;
}
#navbar img {
width: 80px;
height: 40px;
padding-bottom: 5px;
cursor: pointer;
}
button>a{
text-decoration: none;
color: white;
}
#first {
width: 40%;
display: flex;
gap: 30px;
padding-top: 5px;
padding-left: 15px;
}
#second {
width: 28%;
display: flex;
gap: 30px;
align-items: center;
}
#second>button {
width: 22%;
height: 35px;
background-color: #2557a7;
color: white;
font-weight: bold;
font-size: 16px;
cursor: pointer;
border: none;
}
#first>p:hover {
border-bottom: 2px solid white;
cursor: pointer;
}
#second>p:hover {
border-bottom: 2px solid white;
cursor: pointer;
}