-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
57 lines (48 loc) · 1007 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
body {
padding: 0;
background-color: hsl(212, 45%, 89%);
margin: auto;
align-items: center;
display: flex;
justify-content: center;
align-items: center;
width: 100vw;
height: 100vh;
}
.card {
width: 18.75rem;
height: auto;
margin: auto;
background-color: white;
border-radius: 24px;
display: inline-block;
position: absolute;
box-shadow: 2px 4px 16px #dddddd;
}
h6 {
font-family: 'Outfit', sans-serif;
font-weight: 700;
font-size:18px;
text-align: center;
margin: 0;
padding: 8px 24px 8px 24px;
}
p {
font-family: 'Outfit', sans-serif;
font-weight: 400;
font-size:15px;
text-align: center;
margin: 0;
padding: 8px 24px 24px 24px;
}
.cardImage {
max-width: 268px;
margin: 16px;
border-radius: 16px;
}
.attribution {
font-size: 11px;
position: absolute;
bottom: 5%;
}
.attribution a { color: hsl(228, 45%, 44%); }