-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
45 lines (37 loc) · 759 Bytes
/
styles.css
File metadata and controls
45 lines (37 loc) · 759 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
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;700&display=swap');
body {
font-family: "Outfit", sans-serif;
background-color: hsl(212, 45%, 89%);
font-size: 15px;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
height: calc(100vh- 1px);
margin: 1.25rem;
}
img {
max-width: 100%;
border-radius: 10px;
}
.one-section {
text-align: center;
}
.two-section {
color: hsl(216, 15%, 48%);
text-align: center;
}
.second-body {
background-color: hsl(0, 0%, 100%);
padding: 1.25rem;
border-radius: 0.625rem;
margin-bottom: 2rem;
box-sizing: border-box;
}
.attribution {
font-size: 11px;
text-align: center;
}
.attribution a {
color: hsl(228, 45%, 44%);
}