-
Notifications
You must be signed in to change notification settings - Fork 0
/
style_.css
62 lines (52 loc) · 1019 Bytes
/
style_.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
52
53
54
55
56
57
58
59
60
61
62
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;700&display=swap');
* {
font-family: 'Outfit', sans-serif;
margin: 0;
padding: 0;
box-sizing: border-box;
border: none;
}
body {
height: 100vh;
background-color: hsl(212, 45%, 89%);
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
main {
display: flex;
width: 310px;
height: 480px;
flex-direction: column;
background-color: white;
border-radius: 15px;
}
img {
width: 310px;
height: 310px;
padding: 15px;
border-radius: 25px;
}
h1 {
color: hsl(218, 44%, 22%);
text-align: center;
font-weight: 700;
font-size: 22px;
padding: 15px 30px 15px;
}
p {
color: hsl(220, 15%, 55%);
font-size: 15px;
padding: 0px 30px 0px;
text-align: center;
}
.attribution {
position: fixed;
bottom: 0;
font-size: 11px;
text-align: center;
}
.attribution a {
color: hsl(228, 45%, 44%);
}