-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
74 lines (64 loc) · 1.13 KB
/
style.css
File metadata and controls
74 lines (64 loc) · 1.13 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
66
67
68
69
70
71
72
73
* {
padding: 0;
margin: 0;
box-sizing: border-box;
font-family: 'Outfit', sans-serif;
}
body {
height: 100vh;
width: 100vw;
display: flex;
justify-content: center;
align-items: center;
background: #e0e7ff;
}
.container {
display: flex;
flex-direction: column;
padding-bottom: 2.5rem;
justify-content: center;
align-items: center;
border-radius: 20px;
background: #ffffff;
box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}
.content {
display: flex;
flex-direction: column;
gap: 1.5rem;
padding: 15px 15px 0 15px; /* EXCEPT BOTTOM */
}
.image-container {
height: 300px;
width: 300px;
border-radius: 15px;
overflow: hidden;
position: relative;
}
img {
position: absolute;
width: 100%;
height: 100%;
object-fit: contain;
}
.text-container {
display: flex;
flex-direction: column;
gap: .7rem;
max-width: 260px;
margin: auto;
padding-bottom: 0px;
text-align: center;
}
.text-container h1 {
font-size: 22px;
text-wrap: balance;
line-height: 1.8rem;
font-weight: 700;
}
.text-container p {
font-size: 15px;
line-height: 1.2rem;
font-weight: 400;
opacity: .5;
}