This repository has been archived by the owner on Nov 25, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathapp.css
119 lines (112 loc) · 2.54 KB
/
app.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
113
114
115
116
117
118
119
html, body {
margin:0; padding:0;
width: 100%;
height: 100%;
overflow: hidden;
background: black;
}
.plasma {
margin:0; padding:0;
width: 100%;
height: 100%;
position: absolute;
display: block; /* To remove the scrollbars */
background: black;
mix-blend-mode: screen;
transition: opacity ease-in-out;
/* NOTE: transition-duration is set by JS */
}
#canvas2 {
opacity: 0;
}
#button-options-dialog {
position: absolute;
left: 10px;
top: 10px;
z-index: 10;
transition: all ease-in-out 300ms;
}
.z42opt-range.noUi-target {
/* The padding prevents the handle from overlapping the start/end of the track */
padding-left: 16px;
padding-right: 16px;
}
.noUi-handle {
cursor: ew-resize;
}
.noUi-tooltip {
display: none;
}
.noUi-active .noUi-tooltip {
display: block;
}
.z42opt-palette-easefun-canvas,
.z42opt-palette-gradient-canvas {
padding-left: 16px;
padding-right: 16px;
width: 100%;
}
.z42opt-palette-easefun-canvas {
height: 60px;
margin-bottom: 5px;
}
.z42opt-palette-gradient-canvas {
height: 30px;
margin-bottom: 8px;
}
.z42opt-palette-slider {
margin: 0 16px 30px 16px;
}
.z42opt-palette-slider .noUi-handle {
border: 1px solid #333;
}
.noUi-handle:focus,
.z42opt-palette-handle-selected {
border: 2px solid #000; /* improve visibility of the default outline */
background-color: #2A9FD6;
}
.z42opt-palette-handle-to-remove {
opacity: .25;
transition: opacity 125ms ease-out;
}
/* Transition when show state of components is toggled */
.z42opt-component-transition-enter-active {
transition: all .3s ease;
}
.z42opt-component-transition-leave-active {
transition: all .3s ease;
}
.z42opt-component-transition-enter,
.z42opt-component-transition-leave-to {
opacity: 0;
}
/* Show bootstrap modal dialogs without darkening backdrop but still allow to dismiss dialog by clicking outside */
.modal-backdrop {
opacity: 0 !important;
}
/* Make only dialog background semi-transparent */
.modal-content {
background-color: rgba( 0, 0, 0, 0.7) !important;
}
/* Align options dialog to left instead of center */
#z42opt-dialog .modal-dialog {
margin-left: 10px;
margin-right: 10px;
margin-top: 50px;
}
@media screen and (max-width: 768px) {
/* adjustments for more screen real-estate on mobile */
#z42opt-dialog .modal-dialog {
margin: 0;
}
#z42opt-dialog .modal-header {
padding-top: 8px;
padding-bottom: 8px;
}
}
.tab-pane {
padding-top: 1em;
}
.modal-content * {
user-select: none;
}