forked from kontur-web-courses/positioning
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
125 lines (109 loc) · 1.92 KB
/
Copy pathstyles.css
File metadata and controls
125 lines (109 loc) · 1.92 KB
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
.wrapperLogo1{
position: relative;
width: 100px;
height: 100px;
border: 1px solid black;
display: flex;
justify-content: center;
align-items: center;
overflow: hidden;
}
.sq1 {
position: absolute;
top: 35px;
left: 35px;
width: 14px;
height: 14px;
background-color: rgb(255, 0, 0);
}
.sq2 {
position: absolute;
top: 35px;
right: 35px;
width: 14px;
height: 14px;
background-color: rgb(17, 255, 0);
}
.sq3 {
position: absolute;
bottom: 35px;
right: 35px;
width: 14px;
height: 14px;
background-color: rgb(255, 251, 2);
}
.sq4 {
position: absolute;
bottom: 35px;
left: 35px;
width: 14px;
height: 14px;
background-color: rgb(59, 134, 255);
}
.wrapperLogo2{
position: relative;
width: 100px;
height: 100px;
border: 1px solid black;
display: flex;
justify-content: center;
align-items: center;
overflow: hidden;
}
.circle {
position: absolute;
width: 50px;
height: 50px;
background-color: rgb(167, 41, 41);
border-radius: 50%;
}
.overlay {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: rgba(0, 0, 0, 0.5);
z-index: 1;
}
.modal {
position: fixed;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
width: 640px;
background-color: #fff;
z-index: 2;
padding: 20px;
}
.close-btn {
position: absolute;
top: 10px;
right: 10px;
cursor: pointer;
}
.progress-bar {
width: 80%;
height: 30px;
background-color: grey;
position: relative;
}
.progress {
width: 0%;
height: 100%;
background-color: red;
position: absolute;
top: 0;
left: 0;
transition: width 1s ease;
}
.text {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
color: black;
}
.progress.done .text {
color: white;
}