-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.min.css
228 lines (193 loc) · 3.98 KB
/
style.min.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
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
* {
font-family: 'Roboto Slab';
margin:0 auto
}
a {
text-decoration:none
}
section.header {
text-align: center;
height: calc(100vh - 3.7em);
width:100%
}
section.header > .container {
padding-top: 40vh;
padding-bottom:10vh
}
#readMoreBtn {
bottom: 5vh;
position: fixed;
padding-left:calc(50% - 25px)
}
section.content {
padding-left: 5vw;
padding-right: 5vw;
min-height:calc(100vh - 3.7em - 10vh)
}
section.footers {
text-align: center;
padding-top: 2em;
font-size: .7em;
padding-bottom: 1em;
color:#888
}
section.content h1 {
text-align: center;
color: #7d7d7d;
border-width: 0 2px 0 2px;
border-color: #7d7d7d;
border-style: solid;
width: 10em;
margin-bottom:2em
}
section.content .des {
text-align: center;
color: #7d7d7d;
margin-bottom: 2em;
display: block;
font-size:.8em
}
section.content .des span {
vertical-align: super;
padding: 0 5px;
font-size: 10px;
font-weight:700
}
.point {
min-width: 20px;
height: 20px;
background-color: #fff;
border-radius: 100%;
z-index: 2;
border: 3px #7d7d7d solid;
position: relative;
margin-top:10px
}
.timeline {
position: relative;
margin: 0 auto;
width:90vw
}
.timeline ul {
padding:0
}
.timeline ul li {
margin-bottom: 50px;
list-style-type: none;
display: flex;
flex-direction:row
}
.timeline ul li .content {
width:45vw
}
.timeline ul li:nth-child(odd) .content {
padding-left:0
}
.timeline ul li:nth-child(odd) .date {
padding-right:0
}
.timeline ul li:nth-child(even) .content {
padding-right:0
}
.timeline ul li:nth-child(even) .date {
padding-left:0
}
.timeline ul li .date {
width: 45vw;
font-weight:400
}
.timeline ul li .date h4 {
color: #f5f5f5;
font-size:.8em
}
.timeline ul li .content h3 {
padding: 10px 20px;
background-color: #7d7d7d;
margin-bottom: 0;
text-align: center;
color:#fff
}
.timeline ul li .content h3 a {
color:#f5f5f5
}
.timeline ul li .content h3 a span {
vertical-align: super;
padding-left: 5px;
font-size:.5em
}
.timeline ul li .content p {
padding: 10px 10px;
background-color: #fff;
margin-top: 0;
text-align: left;
border-style: solid;
border-color:#7d7d7d
}
.timeline ul li .content p span.todo {
margin-right: 5px;
border-width: 2px;
border-radius: 100%;
border-color: #7d7d7d;
border-style: dotted;
width: calc(1em - 4px);
display: inline-block;
height: calc(1em - 4px);
vertical-align:sub
}
.timeline ul li .content p span.update {
border-radius: 100%;
width: 1em;
display: inline-block;
height: 1em;
vertical-align: sub;
margin-right: 5px;
background-color:#7d7d7d
}
.timeline ul li .content p span.attention {
display: inline-block;
border-left: .5em solid transparent;
border-right: .5em solid transparent;
border-bottom: 1em solid #7d7d7d;
margin-right:5px
}
.timeline ul li:nth-child(even) {
flex-direction:row-reverse
}
.timeline ul li:nth-child(odd) .content p {
margin-right: -12px;
border-width:0 0 2px 2px
}
.timeline ul li:nth-child(even) .content p {
margin-left: -12px;
border-width:0 2px 2px 0
}
.timeline ul li:nth-child(odd) .content h3 {
margin-right: -135px;
border-top-left-radius: 10px;
border-bottom-right-radius: 45px;
border-top-right-radius: 45px;
padding-right:145px
}
.timeline ul li:nth-child(even) .content h3 {
margin-left: -135px;
border-top-right-radius: 10px;
border-bottom-left-radius: 45px;
border-top-left-radius: 45px;
padding-left:145px
}
.timeline ul li:nth-child(odd) .date h4 {
float: left;
padding:14px 20px 0 13px
}
.timeline ul li:nth-child(even) .date h4 {
float: right;
padding:14px 13px 0 20px
}
.timeline::before {
content: "";
position: absolute;
height: 100%;
width: 2px;
left: calc(45vw - 1px);
background-color: #7d7d7d
}