-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
66 lines (56 loc) · 1014 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
63
64
65
:root {
--clr-white: hsl(0, 0%, 100%);
--clr-lg: hsl(212, 45%, 89%);
--clr-gb: hsl(220, 15%, 55%);
--clr-db: hsl(218, 44%, 22%);
}
*,
*::before,
*::after {
box-sizing: border-box;
}
body {
font-family: 'Outfit',sans-serif;
margin: unset;
min-height: 100vh;
font-size: 15px;
background-color: var(--clr-lg);
display: grid;
place-items: center;
position: relative;
}
img {
max-width: 100%;
height: auto;
}
main {
background-color: var(--clr-white);
font-size: 15px;
max-width: 320px;
padding: 1.075em;
box-shadow: 0 1.6em 1.6em hsla(0, 0%, 0% ,0.05);
text-align: center;
margin: 1.075em;
border-radius: 1.35em;
}
img {
border-radius: 0.675em;
}
h1 {
font-size: 1.375rem;
line-height: 1.275;
margin-top: 1.1em;
color: var(--clr-db);
}
p {
color: var(--clr-gb);
margin: 1.075em;
line-height: 1.3;
}
footer {
position: absolute;
bottom: 0.5rem
}
footer a{
color: black;
}