forked from kontur-web-courses/positioning
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlightBoxStyles.css
More file actions
55 lines (47 loc) · 997 Bytes
/
Copy pathlightBoxStyles.css
File metadata and controls
55 lines (47 loc) · 997 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
.overlay {
position: fixed;
top: 0;
left: 0;
display: flex;
justify-content: center;
align-items: center;
width: 100%;
height: 100%;
background-color: rgba(20, 20, 20, 0.5);
}
.lightbox {
position: relative;
width: 666px;
background-color: white;
border: 2px solid black;
}
.sideCloseBtn {
position: absolute;
right: 10px;
width: 20px;
height: 20px;
background-size: cover;
background-image: url("closeBtnpng.png");
background-color: transparent;
}
.progress {
display: flex;
align-items: center;
justify-content: center;
height: 100px;
}
.progressBar {
position: absolute;
display: inline-block;
text-align: center;
height: 15px;
width: 90%;
background-color: grey;
}
.progressedBar {
position: relative;
background-color: red;
width: 20%;
height: 95%;
top: -18px; /* простите... */
}