-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathnavbar.css
82 lines (71 loc) · 1.43 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
body {
font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}
#navbar {
width: 100%;
display: flex;
justify-content: space-between;
align-items: center;
height: 90px;
position:sticky;
top:0;
padding: 0px 70px;
box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
background-color: white ;
}
#content {
height: 70%;
width: 45%;
display: flex;
align-items: center;
justify-content: space-around;
margin-right: 6%;
padding: 0px 10px;
}
#content p {
font-size: 20px;
color: #263238;
}
#content p:hover {
cursor: pointer;
color: rgb(88, 70, 246);
}
#btn1 {
font-size: 20px;
background-color: transparent;
color: rgb(88, 70, 246);
border-radius: 50px;
padding: 12px;
border: 1px solid rgb(88, 70, 246);
}
#btn1:hover {
background-color: rgb(88, 70, 246);
cursor: pointer;
color: white;
}
#btn2 {
font-size: 20px;
background-color: rgb(88, 70, 246);
color: white;
border-radius: 50px;
padding: 12px;
border: 1px solid rgb(88, 70, 246);
}
#btn2:hover {
background-color: #4527a0;
cursor: pointer;
}
#logo {
display: flex;
height: 100%;
justify-content: center;
align-items: center;
width: 270px;
}
#logo img {
height: 110px;
width: 70%;
}
#logo img:hover {
cursor: pointer ;
}