-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.css
64 lines (53 loc) · 899 Bytes
/
index.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
html, body{
min-height:100%
}
* {
box-sizing: border-box;
padding: 0;
margin: 0;
box-sizing: border-box;
}
body {
background-color: hsl(212, 45%, 89%);
display: flex;
justify-content: center;
align-items: center;
}
.container {
padding: 1.5rem 0.3rem;
margin: 4rem;
display: grid;
place-items: center;
background-color: hsl(0, 0%, 100%);
width: 15.9rem;
border-radius: 1rem;
}
abbr {
text-decoration: none;
}
img {
width: 230px;
height: 250px;
border-radius: 0.8rem;
margin-top: -9px;
}
.content {
padding: 2px 7px;
}
.container h1{
color: hsl(218, 44%, 22%);
font-size: 15px;
font-weight: 700;
display: block;
text-align: center;
line-height: 1.2rem;
margin: 0.8rem 2.2rem;
}
.container p {
font-weight: 400;
color: hsl(220, 15%, 55%);
text-align: center;
padding: 0 2.5px;
margin-top: 4px;
line-height: 1.2rem;
}