-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
56 lines (42 loc) · 806 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
* {
box-sizing: border-box;
margin: 0;
padding: 0;
background-color: hsl(212, 45%, 89%);
}
body {
margin-top: 10rem;
}
.box {
background-color: white;
margin: auto;
display: block;
width: 320px;
height: 400px;
padding-top: 14px;
border-radius: 15px;
box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
text-align: center;
}
img {
display: block;
margin-left: auto;
margin-right: auto;
border-radius: 10px;
width: 90%;
}
h3, p {
background-color: white;
font-family: 'Outfit', sans-serif;
}
p {
font-size: 15px;
color: hsl(220, 15%, 55%);
border-radius: 15px;
padding: 10px 27px 28px 27px;
}
h3{
color: hsl(218, 44%, 22%);
padding: 15px 27px 0 27px;
font-size: 23px;
}