blob: 23d46ad2049d5ee75a09a627b338a600a6dadf56 (
plain) (
blame)
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
|
#sidebar {
overflow: hidden;
position: absolute;
background-color: #2b2e46;
width: 320px; height: 100vh;
min-height: 670px;
}
/* logo */
#logo{
display: grid;
grid-template-columns: 60px 200px;
height: 80px;
padding: 20px 0 20px 30px;
}
#logo-text{
font-family: BarlowCondensed-Regular;
font-size: 42px;
color: #FFF;
line-height: 38px;
}
span>b{
font-family: BarlowCondensed-Bold;
font-size: 56px;
}
/* Sidelist */
#sidebar-list{
z-index: 2;
background-color: #2b2e46;
position: relative;
height: calc(100vh - 120px);
width: 320px;
/* min-height: 670px; */
transition: width .3s;
}
#sidebar-toplist>button:nth-child(1){margin-top: 5px;}
#sidebar-toplist{
margin: 0 5px 0 5px;
display: grid;
height: 400px;
grid-template-rows: 45px 50px 50px 50px 50px 50px 50px 50px auto;
}
#sidebar-bottomlist{
display: grid;
margin: 0 5px 0 5px;
justify-items: left;
grid-template-rows: calc(100vh - 670px) 50px 50px 50px;
grid-template-rows: calc(100vh - 670px) 50px 50px 50px;
}
button>span{
font-family: BarlowSemiCondensed-Regular;
font-size: 18px;
color: #CDCFDF;
height: 32px;
line-height: 28px;
transition: opacity .1s;
}
button{
display: grid;
grid-template-columns: 50px auto;
place-items: left;
text-align: left;
background-color: inherit;
cursor: pointer;
border: none;
width: 310px;
height: 40px;
border-radius: 20px;
padding: 5px 0 0 6px;
transition:
width .3s,
background-color .3s;
/* outline: red dotted 1px; */
}
/* button>*{outline: red 1px dotted;} */
button>img {
scale: 1.1;
width: 20px;
padding: 5px;
}
/* Maplist */
#sidebar>div:nth-child(3){
position: relative;
background-color: #202232;
color: #424562;
z-index: 1;
left: 52px;
top: calc(-100vh + 120px);
width: 268px; height: calc(100vh - 120px);
min-height: 550px;
}
input[type=text]{
margin: 10px 0 0 6px;
padding: 1px 0px 1px 16px;
width: 240px;
height: 30px;
font-family: BarlowSemiCondensed-Regular;
font-size: 20px;
background-color: #161723;
color:#CDCFDF;
border: 0;
border-radius: 20px;
}
input[type=text]::placeholder{color:#2b2e46}
input[type=text]:focus{outline: inherit;}
a{text-decoration: none;height: 40px;}
|