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
65 lines (59 loc) · 1.04 KB
/
styles.css
File metadata and controls
65 lines (59 loc) · 1.04 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
.background_modal{
position: fixed;
top: 0;
bottom: 0;
right: 0;
left: 0;
display: flex;
justify-content: center;
align-items: center;
z-index: 10;
background-color: rgba(100, 100, 100, 0.5);
}
.modal_window{
position: relative;
display:flex;
flex-direction: column;
width: 640px;
background-color: #fff;
padding: 20px;
}
.modal_close{
position: absolute;
top: 5px;
right: 5px;
background-color: transparent;
border: none;
}
.logo{
overflow: hidden;
max-width: 100px;
max-height: 100px;
object-fit: contain;
}
.bar_container {
width: 100%;
height: 30px;
}
.gray_bar {
background-color: #ccc;
width: 100%;
height: 100%;
overflow: hidden;
position: relative;
text-align: center;
}
.red_bar {
background-color: red;
clip-path: inset(0 90% 0 0);
height: 100%;
position: relative;
overflow: clip;
bottom: 30px;
left: 0;
}
.white_text{
color: white;
display: flex;
justify-content: center;
}