-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
55 lines (46 loc) · 1.03 KB
/
style.css
File metadata and controls
55 lines (46 loc) · 1.03 KB
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
@import url('https://fonts.googleapis.com/css2?family=Be+Vietnam+Pro:wght@400;500;700&display=swap');
:root {
--clr-white: hsl(0, 0%, 100%);
--clr-gray: hsl(212, 45%, 89%);
--clr-light-blue: hsl(220, 15%, 55%);
--clr-dark-blue: hsl(218, 44%, 22%);
}
* {
font-family: "Outfit", sans-serif;
margin: 0;
padding: 0;
}
.attribution { font-size: 11px; text-align: center; color: var(--clr-light-blue); margin: 16px; }
.attribution a { color: hsl(228, 45%, 44%); }
body {
display: flex;
flex-direction: column;
min-height: 100vh;
background-color: var(--clr-gray);
align-items: center;
justify-content: center;
}
h2 {
color: var(--clr-dark-blue);
font-weight: 700px;
margin: 1rem;
}
p {
color: var(--clr-light-blue);
font-weight: 400px;
margin: 1rem;
}
.card {
width: 350px;
height: 100%;
background-color: var(--clr-white);
text-align: center;
border-radius: 1rem;
}
.contents {
margin: 5% auto;
}
img {
width: 300px;
border-radius: 1rem;
}