-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
70 lines (61 loc) · 1.11 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
body {
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto",
"Helvetica Neue", Arial, sans-serif;
color: #111;
}
.container {
display: flex;
flex-direction: column;
align-items: center;
background-color: #eee;
border-radius: 10px;
margin: 10px;
/* border: 1px solid purple; */
}
#title {
text-align: center;
}
#title h1 {
font-size: 40px;
margin-top: 15%;
}
#img-div {
background-color: white;
/* border: 1px solid red; */
}
img {
/* border: 1px solid green; */
max-width: 100%;
border-radius: 10px 10px 0 0;
}
#img-caption {
/* border: 1px solid; */
width: 90%;
font-size: 1rem;
text-align: center;
}
#tribute-info {
/* border: 1px solid orange; */
font-weight: bold;
font-size: 1.3rem;
margin: 2%;
}
li {
margin: 3% 0;
}
#events,
#quote {
/* border: 1px solid yellow; */
color: #333;
font-size: 1.1rem;
line-height: 1.6rem;
max-width: 80%;
margin-top: 5%;
}
#if-time,
a {
/* border: 1px solid blue; */
font-weight: bold;
font-size: 1.3rem;
margin: 5% 0;
}