-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstyle.css
More file actions
50 lines (40 loc) · 853 Bytes
/
style.css
File metadata and controls
50 lines (40 loc) · 853 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
@import url('https://fonts.googleapis.com/css2?family=Outfit&display=swap');
*{
margin: 0;
padding: 0;
}
body{
font-family: 'Outfit', sans-serif;
background-color: hsl(212, 45%, 89%);
}
.container{
max-width: 360px;
margin:3rem auto;
}
.card img{
width: 20rem;
padding: 10px;
border: 10px;
border-radius: 2em;
align-items: center;
padding-left: 18px;
padding-top: 1rem;
}
.card{
background-color: hsl(0, 0%, 100%);
border-radius: 1rem;
box-shadow: 5px 5px 5px hsl(220, 15%, 55%);
}
.card h2{
padding: 1.5rem;
margin: 0.2rem;
text-align: center;
}
.card p{
margin: 0.5rem;
padding-bottom: 2.4rem;
padding-left: 1rem ;
padding-right: 1rem;
text-align: center;
color: hsl(220, 15%, 55%);
}