This repository has been archived by the owner on Oct 18, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.style.ts
123 lines (104 loc) · 1.94 KB
/
index.style.ts
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
import { css } from 'lit';
export const dropdownStyle = css`
.dropdown {
position: relative;
z-index: 100;
}
.dropdown-content {
display: flex;
}
.select-clicked {
border: 2px #26489a solid;
}
.dropdown-list {
position: relative;
z-index: 101;
}
.header {
display: grid;
grid-template-rows: 1fr 1px;
align-items: center;
padding: 0 10px;
min-height: 42px;
font-size: 16px;
color: rgb(var(--sv-gray-600));
}
.menu {
box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
opacity: 0;
display: none;
background: #fff;
padding: 0;
z-index: 1;
transition: 0.2s;
border-radius: 3px;
}
.items {
list-style: none;
padding: 0;
color: #9fa5b5;
margin: 0;
}
.text.username {
font-size: 14px;
text-align: left;
display: inline-block;
vertical-align: middle;
line-height: normal;
padding: 8px 0;
}
.items li {
color: rgb(var(--sv-gray-600));
text-transform: uppercase;
padding: 0 10px;
cursor: pointer;
min-width: 103px;
min-height: 32px;
display: flex;
align-items: center;
justify-content: flex-start;
gap: 5px;
height: 42px;
}
.sv-icon {
width: 40px;
height: 40px;
background-color: red;
}
.active {
background: rgb(var(--sv-gray-200));
}
.items li:hover {
background: rgb(var(--sv-gray-200));
}
.menu-open {
display: block;
opacity: 1;
position: fixed;
}
.sv-hr {
width: 100%;
height: 1px;
background: rgb(var(--sv-gray-300));
padding: 0px;
margin: 0px;
justify-self: flex-end;
}
.option-label {
white-space: nowrap;
line-height: 1;
}
.who-is-online__controls__item__icon {
line-height: 1;
}
.who-is-online__controls__item {
align-items: center;
}
@media (max-width: 780px) {
.menu--top-left,
.menu--top-center,
.menu--top-right {
bottom: 36px;
}
}
`;