-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.css
147 lines (138 loc) · 3.35 KB
/
index.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
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
/* v0.1.0 */
/* Popup */
@-webkit-keyframes de-plugin-popup {
from {
-webkit-transform: scale(0);
}
to {
-webkit-transform: scale(1);
}
}
@keyframes de-plugin-popup {
from {
transform: scale(0);
}
to {
transform: scale(1);
}
}
@-moz-keyframes de-plugin-popup {
from {
-moz-transform: scale(0);
}
to {
-moz-transform: scale(1);
}
}
#de-plugin-popups-container {
background: rgba(10, 10, 10, 0.95);
width: 100%;
height: 100%;
position: absolute;
pointer-events: all;
top: 0;
left: 0;
justify-content: center;
align-items: center;
overflow: auto;
}
#de-plugin-popups-container .de-plugin-popup {
box-sizing: border-box;
position: absolute;
padding: 10px 20px;
padding-bottom: 50px;
background: none;
background-image: url('img/popup.png');
background-repeat: no-repeat;
background-size: 100% 100%;
-webkit-animation: de-plugin-popup 0.2s;
-moz-animation: de-plugin-popup 0.2s;
animation: de-plugin-popup 0.2s;
overflow: auto;
margin: auto;
}
#de-plugin-popups-container .de-plugin-popup>* {
position: relative;
z-index: 1;
}
#de-plugin-popups-container .de-plugin-popup>.content-2,
#de-plugin-popups-container .de-plugin-popup>.styling-utility-1,
#de-plugin-popups-container .de-plugin-popup>.styling-utility-2 {
display: none;
z-index: 0;
}
#de-plugin-popups-container .de-plugin-popup .inputTextfield {
left: 0;
right: 0;
text-align: center;
}
#de-plugin-popups-container .de-plugin-popup .valueTextfield {
left: 0;
right: 0;
text-align: center;
font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}
#de-plugin-popups-container .de-plugin-popup .buttonsPrompt,
#de-plugin-popups-container .de-plugin-popup .buttonsTextfield,
#de-plugin-popups-container .de-plugin-popup .buttonsDefault {
text-align: center;
}
#de-plugin-popups-container .de-plugin-popup button {
border: none;
outline: none;
padding: 10px 40px;
background: none;
/*background-image: url('img/button.png');
background-repeat: no-repeat;
background-size: 300% 100%;
background-position: 0 0;
font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; */
}
#de-plugin-popups-container .de-plugin-popup button:hover {
background-position: 50% 0;
border: none;
outline: none;
}
#de-plugin-popups-container .de-plugin-popup button:active {
background-position: 100% 0;
border: none;
outline: none;
}
#de-plugin-popups-container .de-plugin-popup .buttonsCustom {
text-align: center;
}
#de-plugin-popups-container .de-plugin-popup .buttonsCustom button {
margin: 0 14%;
}
#de-plugin-popups-container .de-plugin-popup h1,
#de-plugin-popups-container .de-plugin-popup h2,
#de-plugin-popups-container .de-plugin-popup h3,
#de-plugin-popups-container .de-plugin-popup h4,
#de-plugin-popups-container .de-plugin-popup h5 {
text-align: center;
font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
margin-top: 0;
}
@media screen and (min-width: 550px) and (min-height: 350px) {
.de-plugin-popup {
/* top: 50%;
left: 50%;
right: auto;
bottom: auto;
width: 540px;
height: 320px;
margin-left: -270px;
margin-top: -160px; */
}
.de-plugin-popup button {
padding: 10px 30px;
}
}
@media screen and (max-width: 550px) and (min-height: 440px) {
.de-plugin-popup {
/* top: 50%;
bottom: auto;
height: 400px;
margin-top: -200px; */
}
}