-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
52 lines (43 loc) · 700 Bytes
/
Copy pathstyles.css
File metadata and controls
52 lines (43 loc) · 700 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
51
52
/* I used articles from https://www.w3schools.com/ and the nanodegree lessons for reference */
body {
text-align: center;
}
h3 {
text-align: left;
position: relative;
padding-left: 10px;
}
.card {
margin-left: auto;
margin-right: auto;
width: 320px;
border: solid grey 1px;
padding: 8px 5px;
box-shadow: 5px 5px lightgrey;
}
img {
border-radius: 5px;
}
.information {
width: 300px;
text-align: left;
border: solid grey 1px;
display: inline-block;
margin: 10px 0 15px 0;
padding: 3px 0px;
}
ul {
list-style-type: none;
margin: 0;
padding: 0 5px;
}
p {
padding: 0 5px;
}
span {
font-weight: bold;
}
#fact {
font-style: italic;
padding: 0 5px;
}