-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtimeline.css
117 lines (91 loc) · 1.47 KB
/
timeline.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
/*
Pat Kosakanchit
4/15/17
CSE154
TA: Yen Lee
Creative Project #7 : Thailand Political Timeline
This CSS file is the stylesheet of timeline.html.
*/
a, h2 strong, p em{
color: darkred;
}
h1, h2, #intro, .year-heading {
color: dimgray;
}
body {
font-family: sans-serif;
width: 55%;
margin-left: auto;
margin-right: auto;
margin-bottom: 150px;
}
button {
width: 100%;
font-size: inherit;
padding: 10px;
}
.coup {
border: 5px #26953c;
border-style: none solid none none;
}
.election2019 {
border: 5px #11471e;
border-style: none solid none none;
}
.event {
background-color: whitesmoke;
margin-bottom: 10px;
box-shadow: 1px 1px lightgray;
padding: 10px;
}
h1 {
font-size: 45px;
text-align: right;
}
h2 {
font-weight: normal;
font-size: 16px;
}
h2 strong{
font-size: 20px;
}
h3 {
margin: 10px 0px;
font-size: 20px;
}
#intro {
font-style: italic;
font-family: Georgia;
text-align: right;
padding-bottom: 20px;
}
#line {
flex-basis: 0px;
background-color: darkred;
}
p em{
font-size: 30px;
font-family: Georgia;
}
p strong{
font-style: italic;
}
#timeline {
display: flex;
flex-direction: column;
justify-content: center;
}
.year {
display: flex;
}
.year-heading {
text-align: right;
font-family: Georgia;
font-size: 45px;
width: 180px
}
.list {
display: flex;
width: 100%;
flex-direction: column;
}