this repo has no description
1.parameter-list{
2 position: fixed;
3 z-index: 100;
4 top: 0;
5 left: 0;
6 width: 100vw;
7 height: 100vh;
8 background: rgba(0, 0, 0, 0.75);
9}
10
11.parameter-list-inner{
12 position: fixed;
13 top: 50%;
14 left: 50%;
15 transform: translate(-50%, -50%);
16 padding: 10px;
17 background: #373738;
18 border-radius: 10px;
19 width: 40%;
20 height: 80%;
21}
22
23.parameter-list-close{
24 width: 25px;
25 height: 43px;
26 display: flex;
27 justify-content: center;
28 align-items: center;
29}
30
31.parameter-list-header{
32 width: 100%;
33 height: 50px;
34}
35
36.parameter-list-content{
37 width: 100%;
38 height: calc(100% - 50px);
39 overflow-x: hidden;
40 overflow-y: auto;
41}
42
43.parameter-list-button-dropdown{
44 position: fixed;
45 padding: 5px 10px;
46 margin: 0 10px;
47 background: #445077;
48 border-radius: 5px;
49 transition: 0.1s;
50 cursor: pointer;
51 user-select: none;
52 transform: translate(0, 5px);
53 -webkit-user-select: none;
54}
55
56.parameter-list-button-dropdown > div{
57 transition: 0.1s;
58}
59
60.parameter-list-button-dropdown > div:hover{
61 color: #aaa;
62}
63
64.parameter-list-parameter{
65 display: inline-block;
66 padding: 5px 10px;
67 margin: 5px 0px 5px 10px;
68 background: #445077;
69 border-radius: 5px;
70 transition: 0.1s;
71 cursor: pointer;
72 user-select: none;
73 -webkit-user-select: none;
74}
75
76.parameter-list-parameter:hover{
77 background: #363f5e;
78}
79
80.parameter-list-parameter-delete{
81 padding: 0px 5px;
82 display: flex;
83 justify-content: center;
84 align-items: center;
85}