-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
62 lines (59 loc) · 1.04 KB
/
styles.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
*{
margin: 0;
padding: 0;
}
.main-conatiner{
position: absolute;
width: 400px;
height: 300px;
top: 50%;
left: 50%;
margin-top: -200px;
margin-left: -200px;
border-radius: 5px;
box-shadow: 9px 6px 12px 0 rgba(0, 0, 0, 0.5);
overflow: hidden;
background-color: #B53733;
}
.block-1 {
position: absolute;
top: 0;
left: 0;
width: 50px;
height: 100px;
background: #EA7457;
}
.block-1::after{
content: '';
position: absolute;
top: 200px;
width: 50px;
height: 100px;
background-color: #EA7457;
}
.block-2 {
position: absolute;
top: 50px;
left: 200px;
width: 200px;
height: 250px;
background: #EA7457;
}
.block-2::before{
content: '';
position: absolute;
top: -50px;
left: 150px;
width: 50px;
height: 100px;
background-color: #B53733;
}
.block-2::after{
content: '';
position: absolute;
top: 150px;
left: 150px;
width: 50px;
height: 100px;
background-color: #B53733;
}