generated from 4GeeksAcademy/html-hello
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
93 lines (78 loc) · 1.19 KB
/
styles.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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
body{
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
background-color: lightgrey;
font-family: Arial, Helvetica, sans-serif;
}
.card{
width: 500px;
background-color: white;
border-radius: 8px;
}
.head{
display: flex;
padding: 8px;
height: 50px;
}
#html {
width: 35px;
height: auto;
object-fit: contain;
margin-left: 8px;
}
.name{
display: flex;
justify-content: center;
flex-direction: column;
margin-left: 16px;
margin-top: 0;
height: 50px;
}
.name p{
margin: 0px;
}
.dots{
display: flex;
align-items: center;
margin-left: auto;
padding-right: 8px;
}
#lion{
width: 500px;
height: auto;
object-fit: contain;
}
.icons{
display: flex;
justify-content:space-between;
margin-bottom: 8px;
}
.hearts{
margin: 16px 0px 0px 8px;
gap:8px;
}
.save{
margin: 16px 16px 0px 0px
}
.text{
display: flex;
margin: 0px 16px 0px 16px;
flex-direction: column;
padding-bottom: 28px;
}
.text p{
margin: 0;
margin-top: 20px;
}
i{
font-size: 28px;
margin-left: 8px
}
i:active{
color:red;
}
h4{
margin: 0px;
}