-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvisual.css
81 lines (68 loc) · 1.56 KB
/
visual.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
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap");
/* Colors */
:root {
--dark-color: #2b2d42;
--light-color: #fefefe;
--red-color: #d80032;
--cyan-color: #41ead4;
--red-hover-color: #be0732;
--cyan-hover-color: #6af3e1;
}
html {
scroll-behavior: smooth;
}
* {
margin: 0;
box-sizing: border-box;
}
body {
font-family: "poppins";
}
.desktop-nav {
display: flex;
justify-content: space-between;
align-items: center;
background: var(--light-color);
box-shadow: 0px 3px 11px rgba(0, 0, 0, 0.1);
border-radius: 24px;
padding: 2px 30px;
padding-right: 0;
position: fixed;
z-index: 200;
width: calc(1152px - 200px);
top: 28px;
}
.desktop-nav .menu-items {
display: flex;
list-style: none;
}
.desktop-nav .menu-items li {
margin: 0 20px;
}
.desktop-nav .menu-items li:nth-last-of-type(1) {
margin-right: 0;
}
.desktop-nav .menu-items li a {
text-decoration: none;
color: var(--dark-color);
font-size: 16px;
font-weight: bold;
position: relative;
}
.desktop-nav .menu-items li a.active::after {
content: "";
position: absolute;
height: 3px;
width: 100%;
background: var(--red-color);
left: 0;
bottom: -14px;
}
.desktop-nav .menu-items li a.btn {
color: var(--light-color);
}
.tableauPlaceholder{
/* align-items: center; */
margin-left: 120px;
margin-top: 40px;
}