-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
48 lines (42 loc) · 851 Bytes
/
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
body{
display: flex;
justify-content: center;
align-content: center;
}
.cont-2{
width: 410px;
border: 1px solid rgb(255, 255, 255);
position: relative;
display: flex;
justify-content: center;
align-items: center;
flex-wrap: wrap;
}
.wrap{
width: 100px;
height: 100px;
}
.box-1{
width: 100px;
height: 100px;
background-color: rgb(146, 153, 146);
border: 1px solid rgb(247, 240, 240);
position: absolute;
display: flex;
justify-content: center;
align-items: center;
font-size: 32px;
color: white;
}
.box-2{
width: 100px;
height: 100px;
background-color: yellow;
border:1px solid yellowgreen ;
position: absolute;
}
img{
width: 100px;
height: 100px;
object-fit: cover;
}