-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
64 lines (51 loc) · 1007 Bytes
/
Copy pathstyle.css
File metadata and controls
64 lines (51 loc) · 1007 Bytes
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
body{
margin: 0;
font-family: sans-serif;
background-color: rgb(247, 189, 114);
}
main{
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
}
.container{
width: 70%;
height: 80vh;
display: flex;
flex-direction: row;
justify-content: center;
align-items: center;
gap: 35px;
}
.child{
text-align: justify;
width: 40%;
height: 36vh;
background-color: rgb(247, 131, 73);
padding: 20px;
display: flex;
justify-content: center;
flex-direction: column;
border-radius: 14px;
box-shadow: 8px 8px 18px rgba(0,0,0,0.1);
}
.child h3{
text-align: center;
letter-spacing: 3px;
margin: 10px;
}
@media (max-width: 500px) {
.container{
width: 70%;
height: 80vh;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
gap: 35px;
}
.child{
font-size: 8px;
}
}