-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnav.css
58 lines (51 loc) · 966 Bytes
/
nav.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
#nav {
position: fixed;
top: 0;
display: flex;
align-items: center;
width: 100%;
height: 64px;
z-index: 10;
background-color: rgba(0, 0, 0, 0.8);
}
#nav .left {
margin-left: 268px;
padding-left: 20px;
}
#nav .right {
display: flex;
column-gap: 30px;
margin-left: auto;
padding-right: 20px;
}
#nav .right .sign-up-btn {
border: none;
background: transparent;
letter-spacing: 2px;
font-size: xx-small;
font-family: "Circular Black";
cursor: pointer;
transition: transform 0.3s ease;
}
#nav .right .login-btn {
border: none;
background: #fff;
color: #181818;
letter-spacing: 2px;
font-size: xx-small;
font-family: "Circular Black";
cursor: pointer;
padding: 12px;
border-radius: 500px;
width: 120px;
transition: transform 0.3s ease;
}
#nav .left .mdi {
cursor: not-allowed;
}
#nav .right .sign-up-btn:hover {
transform: scale(1.06);
}
#nav .right .login-btn:hover {
transform: scale(1.06);
}