-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
54 lines (46 loc) · 818 Bytes
/
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
/* add your CSS here */
.card {
width: 350px;
border: 1px solid rgba(0, 0, 0, 0.5);
padding: 5px;
text-align: center;
background-color: #42dcf4;
}
.animal-name {
text-decoration: underline;
background-color: #42c8f4;
margin: 0 0 5px 0;
padding: 5px;
border: 1px solid rgba(0, 0, 0, 0.3);
}
.image {
width: 300px;
height: 200px;
border: 1px solid rgba(0, 0, 0, 0.3);
}
.infos {
border: 1px solid rgba(0, 0, 0, 0.3);
background-color: #42c8f4;
}
.fun-fact {
font-style: italic;
padding: 5px;
margin: 0 0 5px 0;
}
.animal-infos {
list-style: none;
margin: 0;
padding: 5px;
border: 1px solid rgba(0, 0, 0, 0.3);
border-left: none;
border-right: none;
}
.label {
font-weight: bold;
text-decoration: underline;
}
.description-box {
padding: 5px;
margin: 5px 0 0 0;
text-align: justify;
}