-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
112 lines (98 loc) · 1.5 KB
/
style.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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
* {
margin: 0;
padding: 0;
}
body {
background: #e9e5e5;
font-family: "Courier New", Courier, monospace;
}
.container {
margin-left: 2em;
margin-right: 2em;
}
#head {
line-height: 2.4em;
color: #918e8e;
text-align: center;
background: #efefef;
padding: 1em;
}
blockquote {
font-family: "Georama", sans-serif;
}
/* figure start*/
#img-div {
text-align: center;
border-radius: 20px;
margin: auto;
margin-top: 2em;
box-shadow: 8px 5px 15px 0px grey;
padding: 20px;
width: fit-content;
}
img {
max-width: 100%;
height: auto;
display: block;
margin: auto;
}
#image {
align-items: center;
justify-content: center;
width: 100;
}
#img-caption {
margin: 1em;
font-weight: bolder;
font-size: large;
}
/* section start */
section {
margin: 6em;
margin-top: 3em;
}
#tribute-info {
text-align: center;
font-weight: bold;
color: #918e8e;
}
#tribute-link {
text-decoration: none;
background-color: #918e8e;
color: rgb(226, 221, 221);
padding-left: 1ch;
padding-right: 1ch;
}
/* timeline years*/
.story {
margin-top: 4em;
margin-bottom: 4em;
}
ul li {
margin-bottom: 2ch;
}
.story-flex-container {
display: flex;
}
.year {
font-weight: bolder;
font-size: large;
}
.description {
color: rgb(49, 49, 49);
margin-left: 1em;
}
#twentytwo:before {
content: "*";
color: rgb(35, 35, 40);
}
#twentytwo {
font-weight: bold;
}
/* phone margin */
@media only screen and (max-width: 711px) {
section {
margin: 1em;
margin-top: 3em;
}
}