-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathglobal.css
112 lines (98 loc) · 1.61 KB
/
global.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
@tailwind base;
@tailwind components;
@tailwind utilities;
@layer base {
html {
font-family: var(--font-montserrat);
}
h1 {
font-family: var(--font-orbitron);
}
.text-edge-outline {
-webkit-text-stroke: 1px rgba(255,255,255,0.3);
}
}
body {
width: 100dvw;
background: linear-gradient(180deg, #000 0%, #3f3f3f 80%, #6F6F6F 100%);
padding: 0;
margin: 0;
display: flex;
justify-content: center;
align-items: center;
overflow-x: hidden;
}
nav {
position: absolute;
top: 0;
left: 0;
bottom: 0;
width: 250px;
}
.background {
position: absolute;
top: 0;
left: 0;
bottom: 0;
width: 250px;
background-color: rgba(255, 255, 255, 0.40);
}
button {
outline: none;
border: none;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
cursor: pointer;
position: absolute;
top: 18px;
left: 29px;
width: 50px;
height: 50px;
border-radius: 50%;
background: transparent;
}
ul,
li {
margin: 0;
padding: 0;
}
ul {
padding: 25px;
position: absolute;
top: 100px;
width: 230px;
}
li {
list-style: none;
margin-bottom: 20px;
display: flex;
align-items: center;
cursor: pointer;
}
.icon-holder {
padding: 6px;
border-radius: 50%;
margin-right: 20px;
}
.text-holder {
border-radius: 12px;
width: 280px;
padding: 6px;
text-align: center;
font-size: 0.9rem;
}
.refresh {
padding: 10px;
position: absolute;
background: rgba(0, 0, 0, 0.4);
border-radius: 10px;
width: 20px;
height: 20px;
top: 10px;
right: 10px;
display: flex;
justify-content: center;
align-items: center;
cursor: pointer;
}