-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
51 lines (42 loc) · 902 Bytes
/
styles.css
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
@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@100;200;300;400;500;600;700;800;900&display=swap");
body {
background-color: hsl(212, 45%, 89%);
height: 100vh;
margin: 0;
padding: 0;
font-family: 'Outfit', sans-serif;
}
.wrapper {
height:100vh;
display: flex;
justify-content: center;
align-items: center;
}
.card {
padding:14px;
background-color:hsl(0, 0%, 100%);
max-width:300px;
border-radius:15px;
margin:auto;
}
img {
width: 100%;
height: auto;
border-radius:15px;
}
.attribution { padding-top:25px; font-size: 11px; text-align: center; }
.attribution a { color: hsl(228, 45%, 44%); }
.card h1,p {
text-align: center;
padding: 0px 15px;
}
.card h1 {
font-weight: 900;
color:hsl(218, 44%, 22%);
font-size:22px;
}
.card p {
font-weight: 400;
color: hsl(220, 15%, 55%);
font-size:15px;
}