-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
45 lines (38 loc) · 709 Bytes
/
Copy pathstyle.css
File metadata and controls
45 lines (38 loc) · 709 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
.container{
height: 400px;
width: 240px;
max-width: 100%;
background-color: hsl(0, 0%, 100%);
border-radius: 8px;
overflow: hidden;
padding: 8px;
}
img {
/* max-width: 100%; */
width: 100%;
padding: 7px;
box-sizing: border-box;
border-radius: 20px;
}
.over{
display: flex;
justify-content: center;
height: 100vh;
align-items: center;
background-color: black;
}
.text-item{
padding: 0 25px;
font-family: 'Outfit', sans-serif;
font-size: small;
}
.heading{
font-weight: 800;
text-align: justify;
font-size: .8rem;
}
.para{
color: hsl(212, 22%, 46%);
font-size: .8rem;
text-align: center;
}