-
-
Notifications
You must be signed in to change notification settings - Fork 118
Expand file tree
/
Copy pathdescStats.css
More file actions
36 lines (36 loc) · 952 Bytes
/
descStats.css
File metadata and controls
36 lines (36 loc) · 952 Bytes
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
/*
* Project Name : Visual Python
* Description : GUI-based Python code generator
* File Name : descStats.css
* Author : Black Logic
* Note : stylesheet for descStats.html
* License : GNU GPLv3 with Visual Python special exception
* Date : 2023. 05. 31
* Change Date :
*/
.vp-percentile-box {
width: 300px;
height: 100px;
border: 0.25px solid var(--vp-border-gray-color);
padding: 0 5px;
}
.vp-percentile-item {
height: 30px;
width: 100%;
border-bottom: 0.25px solid var(--vp-border-gray-color);
padding: 0 10px;
line-height: 30px;
display: flex;
column-gap: 5px;
align-items: center;
}
.vp-percentile-value {
width: 95%;
}
.vp-percentile-box:not(.disabled) .vp-percentile-remove {
cursor: pointer;
}
.vp-percentile-box.disabled {
background-color: var(--vp-light-gray-color);
cursor: not-allowed;
}