-
Notifications
You must be signed in to change notification settings - Fork 2
/
navbar.css
83 lines (65 loc) · 1.1 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
#navbar {
height: 90px;
width: 100%;
display: flex;
justify-content: space-between;
margin-bottom: 70px;
box-shadow: rgba(214, 214, 214, 0.24) 0px 3px 8px;
}
#navbar>div {
height: 90%;
width: 50%;
}
#navbarimage{
width: 20%;
margin-left: 2%;
height: 100%;
display: flex;
align-items: center;
justify-content: center;
}
.site-logo{
width: 100%;
border-radius: 5px;
}
#nav-c {
display: flex;
justify-content: space-evenly;
padding-top: 10px;
}
#nav-c a {
text-decoration: none;
color: black;
font-size: 18px;
}
#nav-c button {
border: 1px solid #f27f44;
width: 140px;
height: 40px;
margin-top: 10px;
background-color: white;
color: #f27f44;
font-weight: bold;
border-radius: 10px;
cursor: pointer;
}
#nav-c a:hover {
color: #f27f44;
}
#nav-c button{
border: 1px solid
#f27f44;
width: 140px;
height:40px;
margin-top: 10px;
background-color: white;
color: #f27f44;
font-weight: bold;
border-radius: 10px;
cursor: pointer;
}
#navbar>div>img {
height: 90%;
width: 40%;
padding-left: 20px;
}