-
Notifications
You must be signed in to change notification settings - Fork 0
/
about.css
74 lines (72 loc) · 1.85 KB
/
about.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
63
64
65
66
67
68
69
70
71
72
73
74
/* lappy */
@media screen and (min-width:1224px){
section .card{
display: flex;
justify-content: space-between;
width: 80%;
margin: 3px auto 3px auto;
gap: 3%;
/* border: 2px solid black; */
}
.container{
margin: 2%;
box-shadow: 0px 2px 0px 2px rgb(231, 227, 227);
}
.text{
padding: auto;
margin-left: 10%;
width: 50%;
font-size: xx-large;
}
}
/* tablet */
@media Screen and (min-width:768px) and (max-width:1224px){
.container{
margin: 2%;
box-shadow: 0px 2px 0px 2px rgb(231, 227, 227);
}
.text{
padding: auto;
margin-left: 10%;
margin-top: 3%;
width: 50%;
font-size: x-large;
}
section .card{
display: flex;
justify-content:space-around;
margin: 8px;
}
}
@media screen and (min-width:320px ) and (max-width:767px){
body{
width: 100%;
}
.container{
margin: 2%;
box-shadow: 0px 2px 0px 2px rgb(231, 227, 227);
background: url(construct10.avif);
background-repeat: no-repeat;
background-size: cover;
object-fit: fill;
width: full;
}
.text{
padding: auto;
margin-left: 10%;
margin-top: 3%;
width: 50%;
font-size: x-large;
}
#img{
display: none;
}
section .card{
display: flex;
justify-content:space-around;
margin: 8px;
width: 80%;
/* margin: 3px auto 3px auto; */
/* gap: 3%; */
}
}