-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
61 lines (51 loc) · 1.02 KB
/
Copy pathstyles.css
File metadata and controls
61 lines (51 loc) · 1.02 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
@import url('https://fonts.googleapis.com/css2?family=Outfit&display=swap');
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
width: 100%;
height: 100vh;
background-color: hsl(212, 45%, 89%);
display: flex;
flex-direction: column;
place-content: center;
overflow-x: hidden;
padding: 10px;
font-family: "Outfit", sans-serif;
}
.container {
margin: auto;
width: 325px;
max-width: 100%;
display: flex;
flex-direction: column;
place-content: center;
align-items: center;
padding: 20px;
background-color: hsl(0, 0%, 100%);
border-radius: 20px;
gap: 1.5rem;
}
.container img {
width: 290px;
max-width: 100%;
border-radius: 10px;
}
.container .text {
text-align: center;
font-family: "Outfit", sans-serif;
}
.content .text h1 {
font-size: 22px;
margin-bottom: 10px;
color: hsl(220, 15%, 55%);
font-weight: 700;
}
.container .text p {
color: hsl(218, 44%, 22%);
}
.attribution {
text-align: center;
}