-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
59 lines (46 loc) · 890 Bytes
/
styles.css
File metadata and controls
59 lines (46 loc) · 890 Bytes
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
/*=global=*/
:root {
--light-gray: hsl(212, 45%, 89%);
--grayish-blue: hsl(220, 15%, 55%);
--dark-blue: hsl(218, 44%, 22%);
font-family: 'Outfit', sans-serif;
size: 15px;
box-sizing: border-box;
}
body {
background-color: var(--light-gray);
}
/*=container=*/
.container {
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
width: 100vw;
}
.card {
border-radius: 1.5rem;
justify-content: center;
align-items: center;
text-align: center;
padding: 1rem;
background-color: white;
box-shadow: 0px 5px 18px rgb(0 0 0 / 26%);
}
img {
border-radius: 0.5rem;
width: 300px;
font-size: 14px;
}
.description {
border-radius: 2rem;
justify-content: center;
align-items: center;
text-align: center;
}
h2 {
color: var(--dark-blue);
}
p {
color: var(--grayish-blue);
}