|
@@ -1,5 +1,6 @@
|
|
<template>
|
|
<template>
|
|
<div id="app">
|
|
<div id="app">
|
|
|
|
+ <div class="bg_top"></div>
|
|
<div class="header">
|
|
<div class="header">
|
|
<div class="timeline">
|
|
<div class="timeline">
|
|
<div class="timeline-item" v-html="formattedText"></div>
|
|
<div class="timeline-item" v-html="formattedText"></div>
|
|
@@ -281,7 +282,17 @@ export default {
|
|
height: calc(100% - 60px);
|
|
height: calc(100% - 60px);
|
|
top: 60px;
|
|
top: 60px;
|
|
}
|
|
}
|
|
-
|
|
|
|
|
|
+.bg_top {
|
|
|
|
+ width: 100%;
|
|
|
|
+ height: 70px;
|
|
|
|
+ position: absolute;
|
|
|
|
+ z-index: 100;
|
|
|
|
+ background: linear-gradient(
|
|
|
|
+ to bottom ,
|
|
|
|
+ rgba(6, 37, 66, 1),
|
|
|
|
+ rgba(26, 28, 53, 0)
|
|
|
|
+ );
|
|
|
|
+}
|
|
.header {
|
|
.header {
|
|
height: 60px;
|
|
height: 60px;
|
|
position: fixed;
|
|
position: fixed;
|