forked from Ficodes/BAE-Frontend
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdashboard-header.component.css
More file actions
92 lines (79 loc) · 1.44 KB
/
dashboard-header.component.css
File metadata and controls
92 lines (79 loc) · 1.44 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
:host {
display: block;
}
.dd-header {
width: 100%;
background: #ffffff;
border-bottom: 1px solid var(--dome-dashboard-gray-200);
position: sticky;
top: 0;
z-index: 50;
}
.header-inner {
max-width: var(--dome-dashboard-max-w);
margin: 0 auto;
padding: 1rem 1.5rem;
display: flex;
align-items: center;
justify-content: space-between;
gap: 1rem;
}
.logo {
color: var(--dome-dashboard-gray-900);
font-size: 1rem;
line-height: 1;
}
/* nav */
.nav-links {
display: flex;
gap: 1.5rem;
}
.nav-links a {
text-decoration: none;
color: var(--dome-dashboard-gray-700);
font-weight: 500;
line-height: 1;
}
.nav-links a:hover {
color: var(--dome-dashboard-blue-600);
}
.header-actions {
display: flex;
gap: 1rem;
align-items: center;
}
.header-link {
text-decoration: none;
color: var(--dome-dashboard-gray-700);
font-weight: 500;
line-height: 1;
}
.header-link:hover {
color: var(--dome-dashboard-blue-600);
}
.btn {
display: inline-flex;
align-items: center;
justify-content: center;
padding: 0.6rem 1.2rem;
border-radius: 8px;
text-decoration: none;
font-weight: 600;
font-size: 0.95rem;
line-height: 1;
transition: 0.15s ease;
cursor: pointer;
white-space: nowrap;
}
.btn-primary {
background: var(--dome-dashboard-blue-600);
color: #fff;
}
.btn-primary:hover {
background: var(--dome-dashboard-blue-700);
}
@media (max-width: 700px) {
.nav-links {
display: none;
}
}