-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathheader.css
More file actions
113 lines (99 loc) · 2.13 KB
/
header.css
File metadata and controls
113 lines (99 loc) · 2.13 KB
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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
@font-face {
font-family: 'DM Sans';
src: url('./fonts/DMSans-VariableFont_opsz\,wght.ttf') format('truetype');
font-weight: 100 1000;
font-style: normal;
}
@font-face {
font-family: 'Geologica';
src: url('./fonts/Geologica-VariableFont_CRSV\,SHRP\,slnt\,wght.ttf') format('truetype');
font-weight: 100 1000;
font-style: normal;
}
/* Reseting the styles*/
* {
margin: 0;
padding: 0;
box-sizing: border-box;
list-style: none;
text-decoration: none;
color: inherit;
}
body {
font-family: 'DM Sans', sans-serif;
background-color: #FCFAFF;
color: #38344D;
overflow-x: hidden;
}
/* Styling the header */
header {
height: 8vh;
}
.header-container {
display: flex;
flex-direction: row;
justify-content: center;
align-items: center;
height: 3rem;
margin: 20px 0;
font-family: DM Sans, sans-serif;
font-weight: 600;
font-size: 0.9rem;
position: fixed;
top: 0;
left: 0;
right: 0;
z-index: 1000;
}
.logo-container {
padding: 1vh 3vw;
border: 1px solid #D6D7E1;
background-color: white;
background-image: url('./images/Logo.png');
background-repeat: no-repeat;
background-position: center;
background-size: 5rem;
width: 140px;
}
.navigation-bar {
display: flex;
flex-direction: row;
border: 1px solid #D6D7E1;
background-color: white;
}
.navigation-bar ul {
display: flex;
flex-direction: row;
margin: auto;
padding: 0 2.2vw;
gap: 2.2rem;
}
.navigation-bar ul li {
color: #BFBBD3;
}
.active {
color: #38344D;
}
.connection-button {
background-color: #3CC593;
min-width: 3rem;
background-image: url('./images/Profil.svg');
background-repeat: no-repeat;
background-position: center;
background-size: 1.6rem;
}
.header-container div {
border-radius: 14px;
margin: 0 10px;
height: 100%;
box-shadow: 0px 4px 27.3px 0px rgba(0, 0, 0, 0.07);
}
.wp-block-wp-dark-mode-block-dark-mode-switch {
padding-bottom: 3rem;
}
/* break point for mobile devices */
@media (max-width: 768px) {
.logo-container {
display: none;
}
}