Skip to content

Commit 66d6f7a

Browse files
authored
Add files via upload
1 parent 0fe446d commit 66d6f7a

File tree

2 files changed

+94
-0
lines changed

2 files changed

+94
-0
lines changed

css/lightWeightPopup.css

Lines changed: 93 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,93 @@
1+
* {
2+
box-sizing: border-box;
3+
}
4+
5+
.lwp-overlay {
6+
background: rgba(0, 0, 0, 0.9);
7+
padding: 5px;
8+
margin: 0px auto;
9+
position: fixed;
10+
top: 0;
11+
width: 100%;
12+
height: 100%;
13+
z-index: 1070;
14+
overflow-x: hidden;
15+
overflow-y: auto;
16+
}
17+
18+
.lwp {
19+
z-index: 1072;
20+
position: absolute;
21+
left: 0px;
22+
right: 0;
23+
top: 0;
24+
bottom: 0px;
25+
margin: 0px auto;
26+
height: fit-content;
27+
}
28+
29+
.lwp .loading {
30+
text-align: center;
31+
color: #FFF;
32+
}
33+
34+
.lwp .loading .text {
35+
color: #444;
36+
}
37+
38+
.lwp #lwp {
39+
margin: 0px auto;
40+
background: #FFF;
41+
border: 5px solid #000;
42+
overflow-x: hidden;
43+
overflow-y: hidden;
44+
border-radius: 5px;
45+
position: relative;
46+
}
47+
48+
.lwp #lwpHead {
49+
display: grid;
50+
align-items: center;
51+
grid-template-columns: 1fr 50px;
52+
border-bottom: 1px solid #ddd;
53+
}
54+
55+
.lwp #lwpHead .title {
56+
font-weight: bold;
57+
padding: 10px;
58+
}
59+
60+
.lwp #lwpHead .close {
61+
color: #fff;
62+
font-size: 25px;
63+
text-align: right;
64+
cursor: pointer;
65+
background: #000;
66+
padding: 10px;
67+
}
68+
69+
.lwp #lwpHead .close span {
70+
position: relative;
71+
left: -4px;
72+
top: -5px;
73+
}
74+
75+
.lwp #lwpBody {
76+
overflow: auto;
77+
}
78+
79+
.lwp #lwpClose {
80+
float: right;
81+
}
82+
83+
.lwp .clear {
84+
clear: both;
85+
}
86+
87+
.lwp-inline {
88+
display: none;
89+
}
90+
91+
.lwp-hidden {
92+
overflow: hidden;
93+
}

css/lightWeightPopup.min.css

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)