-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
64 lines (50 loc) · 940 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
55
56
57
58
59
60
61
62
63
64
/*
User Story #8: The img element should responsively resize, relative to the width of its parent element, without exceeding its original size.
User Story #9: The img element should be centered within its parent element.
TIP: Copy all ID's into their css brackets first :)
*/
#main {
margin: auto;
width: 100%;
background-color: #dddddd;
border-radius: 10px;
padding: 15px;
}
#title {
text-align: center;
font-weight: bold;
}
#img-div {
width: 100%;
background-color: white;
margin: auto;
padding: 30px;
}
#image {
display: block;
margin: auto;
width: 50%;
padding-bottom: 10px;
max-width: 100%;
}
#img-caption {
max-width: 100%;
}
#tribute-info {
max-width: 600px;
margin: auto;
}
ul {
line-height: 40px;
padding: 15px;
}
#tribute-link {
}
p, h3{
text-align: center;
}
#quote {
max-width: 600px;
margin: auto;
padding: 40px;
}