-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path404.css
153 lines (151 loc) · 3 KB
/
404.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
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
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
.navbar-navbar {
width: 100%;
display: flex;
position: relative;
max-width: var(--dl-size-size-maxcontent);
align-items: center;
padding-top: var(--dl-space-space-doubleunit);
padding-left: var(--dl-space-space-tripleunit);
padding-right: var(--dl-space-space-tripleunit);
flex-direction: row;
padding-bottom: var(--dl-space-space-doubleunit);
justify-content: space-between;
}
.navbar-left-side {
display: flex;
align-items: center;
flex-direction: row;
justify-content: center;
}
.navbar-navlink {
display: contents;
}
.navbar-image {
width: 50px;
align-self: center;
object-fit: cover;
margin-right: var(--dl-space-space-doubleunit);
text-decoration: none;
}
.navbar-burger-menu {
display: none;
align-items: flex-start;
border-radius: var(--dl-radius-radius-radius4);
flex-direction: column;
}
.navbar-icon {
width: 36px;
height: 36px;
}
.navbar-links-container {
display: flex;
align-items: flex-start;
flex-direction: row;
}
.navbar-link {
margin-right: var(--dl-space-space-tripleunit);
text-decoration: none;
}
.navbar-link1 {
margin-right: var(--dl-space-space-tripleunit);
text-decoration: none;
}
.navbar-mobile-menu {
top: 0px;
flex: 0 0 auto;
left: 0px;
width: 100%;
height: 100VH;
display: none;
padding: var(--dl-space-space-doubleunit);
position: absolute;
align-items: flex-start;
flex-direction: column;
background-color: #fff;
}
.navbar-container {
flex: 0 0 auto;
width: 100%;
display: flex;
align-items: center;
margin-bottom: var(--dl-space-space-doubleunit);
flex-direction: row;
justify-content: space-between;
}
.navbar-image1 {
width: 50px;
align-self: center;
object-fit: cover;
margin-right: var(--dl-space-space-doubleunit);
}
.navbar-close-menu {
flex: 0 0 auto;
display: flex;
align-items: flex-start;
flex-direction: column;
}
.navbar-icon2 {
width: 24px;
height: 24px;
}
.navbar-links-container1 {
display: flex;
align-items: flex-start;
flex-direction: column;
}
.navbar-link2 {
margin-bottom: var(--dl-space-space-unit);
text-decoration: none;
}
.navbar-link3 {
margin-bottom: var(--dl-space-space-unit);
text-decoration: none;
}
.navbar-link4 {
margin-bottom: var(--dl-space-space-unit);
text-decoration: none;
}
.navbar-link5 {
text-decoration: none;
}
.navbar-right-side {
display: flex;
align-items: center;
flex-direction: row;
justify-content: space-between;
}
.navbar-link6 {
display: contents;
}
.navbar-icon4 {
width: 36px;
height: 36px;
text-decoration: none;
}
@media(max-width: 767px) {
.navbar-burger-menu {
display: flex;
padding: var(--dl-space-space-halfunit);
background-color: var(--dl-color-gray-black);
}
.navbar-icon {
fill: var(--dl-color-gray-white);
}
.navbar-links-container {
display: none;
}
}
.page-container {
width: 100%;
display: flex;
overflow: auto;
min-height: 100vh;
align-items: center;
flex-direction: column;
}
.page-text {
font-size: 50px;
}
.page-navlink {
text-decoration: none;
}