-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
74 lines (59 loc) · 1.25 KB
/
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
63
64
65
66
67
68
69
70
71
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;700&display=swap');
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
:root {
--white: hsl(0, 0%, 100%);
--light-blue: hsl(212, 45%, 89%);
--grayish-blue: hsl(220, 15%, 55%);
--dark-blue: hsl(218, 44%, 22%);
}
body {
font-family: "Outfit", sans-serif;
background-color: var(--light-blue);
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
height: calc(100vh - 1px);
font-size: 15px;
margin: 1.25rem ;
}
p {
width: 100%;
color: var(--grayish-blue);
margin-bottom: 10px;
margin: 10 10;
}
.card h1 {
color: var(--dark-blue);
font-size: 1rem;
font-weight: bold;
margin-bottom: 1rem;
}
.card img {
border-radius: 0.625rem;
max-width: 100%;
margin-bottom: 1rem;
}
.card {
background: var(--white);
padding: 1.25rem;
border-radius: 0.625rem;
box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.05);
text-align: center;
margin: 0 auto;
width: 250px;
justify-content: center;
align-items: center;
}
.attribution {
font-size: 12px;
text-align: center;
margin-top: 1.5rem;
}
.attribution a {
color: hsl(228, 45%, 44%);
}