-
-
Notifications
You must be signed in to change notification settings - Fork 77
Expand file tree
/
Copy pathHeader.css
More file actions
125 lines (108 loc) · 1.86 KB
/
Header.css
File metadata and controls
125 lines (108 loc) · 1.86 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
114
115
116
117
118
119
120
121
122
123
124
125
.header-wrapper {
height: fit-content;
width: clamp(100vw, 0.1rem + 1vw, 100%);
}
.close-button {
position: absolute;
top: 0;
left: 0;
padding: 12px;
}
.card-content {
padding: 5px;
padding-left: 40px;
padding-right: 30px;
white-space: pre-line;
color: white;
font-size: medium;
}
.card-wrapper {
padding-top: 1rem;
padding-bottom: 1rem;
}
.navbar {
display: flex;
flex-wrap: nowrap;
justify-content: space-between;
align-items: center;
width: 100%;
white-space: nowrap;
}
.timer-message-section {
display: flex;
align-items: center;
justify-content: flex-start;
flex-wrap: nowrap;
gap: 1rem;
white-space: nowrap;
}
.redBackGroupHeader {
z-index: 10;
bottom: 0;
right: 0;
position: relative;
height: 30px;
text-align: center;
vertical-align: middle;
background: #ff4d4f;
border-radius: 40px;
color: #fff;
padding: 3px 6px;
max-width: 39px;
font-size: 1rem;
min-width: 29px;
}
.owner-message {
margin-right: 3rem;
}
.nav-links {
display: flex;
flex-direction: row;
align-items: center;
flex-wrap: nowrap;
gap: 1rem;
}
.dropdown-item-hover:hover {
background-color: #2f4157 !important;
}
@media (max-width: 1400px) {
.nav-links {
flex-direction: column !important;
}
}
@media (max-width: 1500px) {
.dashboard-text-link {
font-size: 14px;
}
.owner-message {
margin-right: 0;
}
}
@media (max-width: 1050px) {
.timer-message-section {
display: flex;
width: 0;
margin-right: 0;
}
.owner-message {
display: none;
}
}
@media screen and (min-width: 1400px) and (max-width: 1700px) {
.owner-message {
display: none;
}
}
@media screen and (max-width: 769px) {
.responsive-spacing {
margin-right: 5px;
}
}
.header-margin{
height : 20px;
background-color: #1B2A41 ;
}
.header-margin-light{
height : 20px;
background-color: #fff;
}