-
Notifications
You must be signed in to change notification settings - Fork 4
/
style.css
95 lines (75 loc) · 1.06 KB
/
style.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
body {
color: white;
padding: 0 16px;
overflow: auto;
max-height: 560px;
}
uxp-panel {
color: white;
padding: 0 16px;
}
li:before {
content: '• ';
width: 3em;
}
#layers {
border: 1px solid #808080;
border-radius: 4px;
padding: 16px;
}
.status {
font-size: 14px;
}
.card {
margin-top: 18px;
display: flex;
flex-direction: column;
}
.card label {
margin-bottom: 10px;
}
.card .tag {
background: #00ff7e;
color: black;
padding: 2px;
margin-left: 12px;
border-radius: 4px;
font-weight: 600;
}
textarea {
height: 100px;
margin: 0;
margin-top: 12px;
}
input {
margin: 0;
margin-top: 12px;
}
button {
margin: 0;
margin-top: 24px;
padding: 0;
width: 100%;
cursor: pointer;
height: 32px;
}
label {
margin-right: 12px;
}
select {
margin: 0;
}
.input_num {
width: 150px;
}
.input_image {
cursor: pointer;
width: 120px;
height: fit-content;
min-height: 100px;
outline: 1px solid #6a736a;
/* background-color: currentColor; */
}
.input_image:hover {
outline: 1px solid rgb(192, 234, 255);
}