Commit 7a6a9520 by Chao Sun

根据来源判断调查问卷首页和最后一页显示

parent 8908d51b
$(function () { $(function () {
// var api = 'https://' + window.location.host; // var api = 'https://' + window.location.host;
var api = 'https://m.zuihuibi.cn'; var api = 'https://mdev.zuihuibi.cn';
var gitUrlParam = window.location.search; var gitUrlParam = window.location.search;
const shareInfo = { const shareInfo = {
shareCode: null, shareCode: null,
......
import {NgModule, Component} from '@angular/core'; import { NgModule, Component } from '@angular/core';
import {Routes, RouterModule} from '@angular/router'; import { Routes, RouterModule } from '@angular/router';
import {TransitComponent} from './transit/transit.component'; import { TransitComponent } from './transit/transit.component';
import {FamilyComponent} from './family/family.component'; import { FamilyComponent } from './family/family.component';
import {AgeComponent} from './age/age.component'; import { AgeComponent } from './age/age.component';
import {JobComponent} from './job/job.component'; import { JobComponent } from './job/job.component';
import {IncomeComponent} from './income/income.component'; import { IncomeComponent } from './income/income.component';
import {LoanComponent} from './loan/loan.component'; import { LoanComponent } from './loan/loan.component';
import {SocialSecurityComponent} from './social-security/social-security.component'; import { SocialSecurityComponent } from './social-security/social-security.component';
import {HealthComponent} from './health/health.component'; import { HealthComponent } from './health/health.component';
import {ChildrenHealthComponent} from './children-health/children-health.component'; import { ChildrenHealthComponent } from './children-health/children-health.component';
import {DiseaseComponent} from './disease/disease.component'; import { DiseaseComponent } from './disease/disease.component';
import {SmokingComponent} from './smoking/smoking.component'; import { SmokingComponent } from './smoking/smoking.component';
import {LiveComponent} from './live/live.component'; import { LiveComponent } from './live/live.component';
import {Transit1Component} from './transit1/transit1.component'; import { Transit1Component } from './transit1/transit1.component';
import {Transit2Component} from './transit2/transit2.component'; import { Transit2Component } from './transit2/transit2.component';
import {Transit3Component} from './transit3/transit3.component'; import { Transit3Component } from './transit3/transit3.component';
import { SpecialMmhComponent } from './special-mmh/special-mmh.component';
import {CommonModule} from '@angular/common'; import { CommonModule } from '@angular/common';
const routes: Routes = [ const routes: Routes = [
{ {
...@@ -35,11 +35,11 @@ const routes: Routes = [ ...@@ -35,11 +35,11 @@ const routes: Routes = [
}, { }, {
path: 'job', path: 'job',
component: JobComponent, component: JobComponent,
data: [{id: 1}] data: [{ id: 1 }]
}, { }, {
path: 'spouse_job', path: 'spouse_job',
component: JobComponent, component: JobComponent,
data: [{id: 2}] data: [{ id: 2 }]
} }
, { , {
path: 'income', path: 'income',
...@@ -53,11 +53,11 @@ const routes: Routes = [ ...@@ -53,11 +53,11 @@ const routes: Routes = [
}, { }, {
path: 'health', path: 'health',
component: HealthComponent, component: HealthComponent,
data: [{id: 1}] data: [{ id: 1 }]
}, { }, {
path: 'spouse_health', path: 'spouse_health',
component: HealthComponent, component: HealthComponent,
data: [{id: 2}] data: [{ id: 2 }]
}, { }, {
path: 'children_health/:childId', path: 'children_health/:childId',
component: ChildrenHealthComponent, component: ChildrenHealthComponent,
...@@ -80,6 +80,10 @@ const routes: Routes = [ ...@@ -80,6 +80,10 @@ const routes: Routes = [
path: 'transit3', path: 'transit3',
component: Transit3Component component: Transit3Component
}, },
{
path: 'specialMmh',
component: SpecialMmhComponent
}
// { // {
// path: '*', // path: '*',
// component: 'TransitComponent' // component: 'TransitComponent'
......
import {Component, OnInit} from '@angular/core'; import { Component, OnInit } from '@angular/core';
import {CommonService} from "./common.service"; import { CommonService } from "./common.service";
@Component({ @Component({
selector: 'app-root', selector: 'app-root',
......
...@@ -22,7 +22,8 @@ import {Transit3Component} from './transit3/transit3.component'; ...@@ -22,7 +22,8 @@ import {Transit3Component} from './transit3/transit3.component';
import {HttpClientModule} from '@angular/common/http' import {HttpClientModule} from '@angular/common/http'
import {CommonService} from './common.service' import {CommonService} from './common.service'
import {LocalStorage} from './local.storage' import {LocalStorage} from './local.storage';
import { SpecialMmhComponent } from './special-mmh/special-mmh.component'
@NgModule({ @NgModule({
declarations: [ declarations: [
AppComponent, AppComponent,
...@@ -40,7 +41,8 @@ import {LocalStorage} from './local.storage' ...@@ -40,7 +41,8 @@ import {LocalStorage} from './local.storage'
TransitComponent, TransitComponent,
Transit1Component, Transit1Component,
Transit2Component, Transit2Component,
Transit3Component Transit3Component,
SpecialMmhComponent
], ],
imports: [ imports: [
BrowserModule, BrowserModule,
......
.specialWrapper{
text-align: center;
margin-top:8px;
}
.specialWrapper div{
font-size: 16px;
margin-bottom: 5px;
}
.specialWrapper div span{
font-weight: 900;
}
\ No newline at end of file
<div class="limbo">
<div class="title">
<img src="assets/images/445.png" />
</div>
<div class="specialWrapper">
<div>
等等先别关!
</div>
<div>
我们还为美妈建立了超级福利群
</div>
<img style="width: 40%;" src="assets/images/msje.jpg" alt="银盾在线">
<div>
扫描二维码添加小助手拉你进群
</div>
<div>
成功进群后即可领取下单<span>返现</span>
</div>
<div>
不定期<span>红包</span>让你拿到手软
</div>
<div>
微商城<span>优惠</span>抢先知
</div>
<div>
养娃心得一同交流
</div>
<div>
育儿专家在线答疑….
</div>
<div>
全国各地的美妈都在这了
</div>
<div>
就等你入群!
</div>
</div>
</div>
\ No newline at end of file
import { async, ComponentFixture, TestBed } from '@angular/core/testing';
import { SpecialMmhComponent } from './special-mmh.component';
describe('SpecialMmhComponent', () => {
let component: SpecialMmhComponent;
let fixture: ComponentFixture<SpecialMmhComponent>;
beforeEach(async(() => {
TestBed.configureTestingModule({
declarations: [ SpecialMmhComponent ]
})
.compileComponents();
}));
beforeEach(() => {
fixture = TestBed.createComponent(SpecialMmhComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});
it('should create', () => {
expect(component).toBeTruthy();
});
});
import { Component, OnInit } from '@angular/core';
@Component({
selector: 'app-special-mmh',
templateUrl: './special-mmh.component.html',
styleUrls: ['./special-mmh.component.css']
})
export class SpecialMmhComponent implements OnInit {
constructor() { }
ngOnInit() {
}
}
.specialContent{
width: 100%;
display: flex;
justify-content: center;
align-items: center;
font-size: 28px;
/* box-shadow: 0 1px 5px #e4dfdf; */
border-radius: 5px;
border: 1px #d3d9ef solid;
}
.part1{
height: 120px;
margin-bottom: 20px;
position: relative;
}
.part1 .iconfont{
color:#2806b1;
margin-right: 20px;
font-size: 40px!important;
}
.part1,.part2,.part3{
flex-direction: column;
padding: 20px;
position: relative;
}
.part1 div:nth-child(2),.part2 div:nth-child(2){
margin-top: 20px;
}
.part1{
background: #f7f7f2;
}
.part1 div:nth-child(2){
color: #3e4768;
display: flex;
align-items: center;
}
.part2{
background: #033984;
/* background: linear-gradient(to bottom right, #2806b1, #6571c7); */
color: #fff;
}
.gifts{
position: absolute;
left: 0;
font-size: 20px;
top: 0px;
width: 85px;
height: 35px;
background: #ec2d37;
color: #fff;
border-radius: 5px 0px 40px 0px;
line-height: 35px;
padding-left: 10px;
}
.part3 .iconfont{
color:rgb(250, 253, 3);
margin-right: 5px;
font-size: 20px;
}
.part3 li{
width: 100%;
text-align: left;
font-size: 20px;
margin-bottom: 5px;
}
\ No newline at end of file
<div class="limbo"> <div class="limbo">
<div class="title"> <div class="title" *ngIf="!picFlag">
<img src="assets/images/bg_1.png" /> <img src="assets/images/bg_1.png" />
</div> </div>
<div class="tips"> <div class="specialWrapper" *ngIf="picFlag">
<div class="specialContent part1">
<div class="gifts">
福利1
</div>
<div>
<!-- <span class="iconfont">&#xe625;</span> -->
<span style="color: #ec2d37;">平安意外险领取成功</span>
</div>
</div>
<div class="specialContent part2">
<div class="gifts">福利2</div>
<div>家庭风险咨询服务</div>
<div>(¥199)</div>
<ul class="part3">
<li><span class="iconfont">&#xe62e;</span>所有家庭成员风险分析</li>
<li><span class="iconfont">&#xe62e;</span>定制保险方案</li>
<li><span class="iconfont">&#xe62e;</span>投保理赔协助</li>
</ul>
</div>
</div>
<div class="tips" *ngIf="picFlag">
<span style="color:red;">*</span>
<span>了解一下您的家庭情况</span>
</div>
<div class="tips" *ngIf="!picFlag">
<span style="color:red;">*</span> <span style="color:red;">*</span>
<span>本问卷大约需要1分钟</span> <span>本问卷大约需要1分钟</span>
</div> </div>
......
import {Component, OnInit} from '@angular/core'; import { Component, OnInit } from '@angular/core';
import {CommonService} from "../common.service"; import { CommonService } from "../common.service";
@Component({ @Component({
selector: 'app-transit', selector: 'app-transit',
...@@ -7,12 +7,18 @@ import {CommonService} from "../common.service"; ...@@ -7,12 +7,18 @@ import {CommonService} from "../common.service";
styleUrls: ['./transit.component.css'] styleUrls: ['./transit.component.css']
}) })
export class TransitComponent implements OnInit { export class TransitComponent implements OnInit {
picFlag: boolean;
constructor(private commonService: CommonService) { constructor(private commonService: CommonService) {
} }
ngOnInit() { ngOnInit() {
this.commonService.surveyInfo().then(); this.commonService.surveyInfo().then();
const activityCode = this.commonService.getQueryString('activityCode');
if (activityCode == 'mmh') {
this.picFlag = true;
sessionStorage.setItem('activityCode', activityCode);
} else {
this.picFlag = false;
}
} }
} }
...@@ -5,7 +5,7 @@ ...@@ -5,7 +5,7 @@
align-items: center; align-items: center;
letter-spacing: 2px; letter-spacing: 2px;
position: relative; position: relative;
top: -100px; top: -110px;
} }
.ydCodeContainer > img { .ydCodeContainer > img {
......
...@@ -3,10 +3,10 @@ ...@@ -3,10 +3,10 @@
<img src="assets/images/bg_17.png" /> <img src="assets/images/bg_17.png" />
</div> </div>
<div class="ydCodeContainer"> <div class="ydCodeContainer">
<img style="width: 30%;" src="assets/images/yd.jpg" alt="银盾在线"> <img style="width: 35%;" src="assets/images/yd.jpg" alt="银盾在线">
<p style="font-size:18px;">请关注我们的公众号查询您的报告</p> <p style="font-size:18px;margin-bottom: 0;">请关注我们的公众号查询您的报告</p>
</div> </div>
<div class="footer" (click)="getHref()" style="position: relative;top: -80px;"> <div class="footer" (click)="getHref()" style="position: relative;top: -100px;">
<div (click)="getHref()">我知道了</div> <div (click)="getHref()">我知道了</div>
</div> </div>
</div> </div>
\ No newline at end of file
import {Component, OnInit} from '@angular/core'; import { Component, OnInit } from '@angular/core';
import { CommonService } from '../common.service';
@Component({ @Component({
selector: 'app-transit3', selector: 'app-transit3',
templateUrl: './transit3.component.html', templateUrl: './transit3.component.html',
styleUrls: ['./transit3.component.css'] styleUrls: ['./transit3.component.css']
}) })
export class Transit3Component implements OnInit { export class Transit3Component implements OnInit {
activityCode: string;
constructor() { constructor(
public commonService: CommonService
) {
} }
ngOnInit() { ngOnInit() {
this.activityCode = sessionStorage.getItem('activityCode');
} }
getHref() { getHref() {
if (this.activityCode == 'mmh') {
window.location.href = 'https://' + window.location.host + '/questionnaire/#/specialMmh';
} else {
window.location.href = 'https://' + window.location.host + '/member'; window.location.href = 'https://' + window.location.host + '/member';
} }
}
} }
@font-face {font-family: "iconfont";
src: url('iconfont.eot?t=1570782589457'); /* IE9 */
src: url('iconfont.eot?t=1570782589457#iefix') format('embedded-opentype'), /* IE6-IE8 */
url('data:application/x-font-woff2;charset=utf-8;base64,d09GMgABAAAAAAOcAAsAAAAAB9wAAANPAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHEIGVgCDHAqDIIJzATYCJAMQCwoABCAFhG0HPxvcBhEVnHfIfhw4Z9MZ6Fv3YUWdpHsOHvi87P3kT5tBDaQraLqATsZtfRN1UwMEDJzdmnMEcsJETZZk7cijf8hDKb00HRxcjr9hE8N5bctpzEVjU68NDMN4a2BjTXqQgAsk94axC1ricQjAhL9YorS8thUNiTlOAGLooAG90DJ2ZANaoCGwqVgqEcsxoCkLlEvAsuD74iPJaaBgUDFPauxf1pfCN5Y38ar1v5WuajvW6bwAWwUqEAskiIGV/t6oUSqWikntLUkHGhoKTNUR9ib+/3+kPIpeswKgDP7zhA1mvgWAVJhW4Y3FEUOBN2HyKkM8VD7AURIADbAFRgAnmSRXWsW6SjWFWFwtbqJP/w763Zcdkm69GnD7VuutF213HnTICujijmlha+SWVb8N6bcXdbh75d22Kbdetd5+rd992+HOm059V29buMO9bW373kVu+oB1brXt1ibdWhb0KFgH3yNvzRrXrzldB3asPL+poF77d3pS0aHdyoz5FvdV8/7Mz1+Q7VbSY0yX8apfh0mdx7vWLkzvUO/VMrB7RJfw8vKKyrqjVyO6h3eJ05UVR+uuVkzV9ernDhMInPWeITDQcM+yBga66mT/oUNnzCgd4Box+83rp3GP4/6ePt2p0+f4z/nR7Wn3ZYDmPpZCmrwvpa40wSxrQqdOpc/6Hj6iO+obdCd90qSAgFIHfaNuX0ojAP+t0qK2B0GhWv/eb/gwusfxHg65vzWzBOD+me7ToKq74hcoVMW/KpDA/1/SwlWmQ0pF7cj1WZI4KgAKYLJc8Idy4OzJFGa315ARaLgloGCLH6hohCKSGAsGzKSCDRoFYCJGxWozLkajIqQRiDYHgMDRQVCw5zSoOLqMSOJjMODuM9jgaGgOO+8OW+4di7sToxK0oP8QDXXOdskuRN/Rj43itCpgvJGHGIU8yfLZG3bIU8wYPr4QceCYWriC07BpCHqmCo0kQaQv09RVYZQYaic7JwwpAllA+wORQTrOqy12hc/fIW/UULihrCr5htggdg9yiawDctN3ncpu5ZXBh1cQwgEOIy1wBV7UWCkC+upBFWSIRBiQ6JVSVMl11SfLG9s3XAeYmLNkilCFFAbmp3Ht9P2NqluagKaeTAAA') format('woff2'),
url('iconfont.woff?t=1570782589457') format('woff'),
url('iconfont.ttf?t=1570782589457') format('truetype'), /* chrome, firefox, opera, Safari, Android, iOS 4.2+ */
url('iconfont.svg?t=1570782589457#iconfont') format('svg'); /* iOS 4.1- */
}
.iconfont {
font-family: "iconfont" !important;
font-size: 16px;
font-style: normal;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
.icon-gou:before {
content: "\e62e";
}
.icon-gouxuan:before {
content: "\e60c";
}
.icon-check:before {
content: "\e625";
}
!function(a){var e,n='<svg><symbol id="icon-gou" viewBox="0 0 1024 1024"><path d="M496.25538 835.776235L146.879816 474.880686l89.599888-72.895908 201.983748 160.895798c82.751897-100.031875 266.623667-298.431627 520.19135-456.127429l21.311973 50.047937c-232.767709 217.087729-423.295471 522.815346-483.711395 678.975151m441.151448-393.983507a431.103461 431.103461 0 1 1-262.911671-329.215589V26.305247A509.887363 509.887363 0 0 0 511.99936 0.00128C442.879446 0.00128 375.93553 13.505263 312.703609 40.32123c-60.991924 25.791968-115.711855 62.655922-162.687797 109.695862A510.719362 510.719362 0 0 0 0 512.00064c0 69.119914 13.503983 136.06383 40.31995 199.295751 25.791968 60.991924 62.655922 115.711855 109.695862 162.687797A510.719362 510.719362 0 0 0 511.99936 1024c69.119914 0 136.06383-13.503983 199.295751-40.31995 60.991924-25.791968 115.711855-62.655922 162.687797-109.695862a510.719362 510.719362 0 0 0 145.215818-432.19146h-81.791898" fill="#333333" ></path></symbol><symbol id="icon-gouxuan" viewBox="0 0 1024 1024"><path d="M512 0C230.4 0 0 230.4 0 512s230.4 512 512 512 512-230.4 512-512S793.6 0 512 0z m326.4 371.2l-384 384C448 761.6 428.8 768 416 768c-12.8 0-25.6-6.4-38.4-12.8L147.2 524.8c-19.2-19.2-19.2-57.6 0-76.8 19.2-19.2 57.6-19.2 76.8 0l192 192 345.6-345.6c19.2-19.2 57.6-19.2 76.8 0 25.6 19.2 25.6 51.2 0 76.8z" fill="" ></path></symbol><symbol id="icon-check" viewBox="0 0 1024 1024"><path d="M512 0C229.308 0 0.102 229.205 0.102 512s229.206 512 512 512 512-229.205 512-512S794.795 0 512 0z m276.207 381.047L441.924 727.33c-6.826 6.827-18.688 6.042-26.47-1.707l-23.21-23.21-155.137-155.136a19.934 19.934 0 0 1 0-28.211l42.308-42.309a19.934 19.934 0 0 1 28.212 0L429.568 598.7 717.67 310.613c6.827-6.826 18.688-6.058 26.47 1.707l42.31 42.308c7.799 7.8 8.532 19.644 1.706 26.47z m0 0" ></path></symbol></svg>',t=(e=document.getElementsByTagName("script"))[e.length-1].getAttribute("data-injectcss");if(t&&!a.__iconfont__svg__cssinject__){a.__iconfont__svg__cssinject__=!0;try{document.write("<style>.svgfont {display: inline-block;width: 1em;height: 1em;fill: currentColor;vertical-align: -0.1em;font-size:16px;}</style>")}catch(e){console&&console.log(e)}}!function(e){if(document.addEventListener)if(~["complete","loaded","interactive"].indexOf(document.readyState))setTimeout(e,0);else{var t=function(){document.removeEventListener("DOMContentLoaded",t,!1),e()};document.addEventListener("DOMContentLoaded",t,!1)}else document.attachEvent&&(o=e,i=a.document,c=!1,(l=function(){try{i.documentElement.doScroll("left")}catch(e){return void setTimeout(l,50)}n()})(),i.onreadystatechange=function(){"complete"==i.readyState&&(i.onreadystatechange=null,n())});function n(){c||(c=!0,o())}var o,i,c,l}(function(){var e,t;(e=document.createElement("div")).innerHTML=n,n=null,(t=e.getElementsByTagName("svg")[0])&&(t.setAttribute("aria-hidden","true"),t.style.position="absolute",t.style.width=0,t.style.height=0,t.style.overflow="hidden",function(e,t){t.firstChild?function(e,t){t.parentNode.insertBefore(e,t)}(e,t.firstChild):t.appendChild(e)}(t,document.body))})}(window);
\ No newline at end of file
<?xml version="1.0" standalone="no"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
<!--
2013-9-30: Created.
-->
<svg>
<metadata>
Created by iconfont
</metadata>
<defs>
<font id="iconfont" horiz-adv-x="1024" >
<font-face
font-family="iconfont"
font-weight="500"
font-stretch="normal"
units-per-em="1024"
ascent="896"
descent="-128"
/>
<missing-glyph />
<glyph glyph-name="gou" unicode="&#58926;" d="M496.25538 60.22376499999996L146.879816 421.119314l89.599888 72.895908 201.983748-160.895798c82.751897 100.031875 266.623667 298.431627 520.19135 456.127429l21.311973-50.047937c-232.767709-217.087729-423.295471-522.815346-483.711395-678.975151m441.151448 393.983507a431.103461 431.103461 0 1 0-262.911671 329.215589V869.694753A509.887363 509.887363 0 0 1 511.99936 895.99872C442.879446 895.99872 375.93553 882.494737 312.703609 855.67877c-60.991924-25.791968-115.711855-62.655922-162.687797-109.695862A510.719362 510.719362 0 0 1 0 383.99936c0-69.119914 13.503983-136.06383 40.31995-199.295751 25.791968-60.991924 62.655922-115.711855 109.695862-162.687797A510.719362 510.719362 0 0 1 511.99936-128c69.119914 0 136.06383 13.503983 199.295751 40.31995 60.991924 25.791968 115.711855 62.655922 162.687797 109.695862a510.719362 510.719362 0 0 1 145.215818 432.19146h-81.791898" horiz-adv-x="1024" />
<glyph glyph-name="gouxuan" unicode="&#58892;" d="M512 896C230.4 896 0 665.6 0 384s230.4-512 512-512 512 230.4 512 512S793.6 896 512 896z m326.4-371.2l-384-384C448 134.4 428.8 128 416 128c-12.8 0-25.6 6.4-38.4 12.8L147.2 371.2c-19.2 19.2-19.2 57.6 0 76.8 19.2 19.2 57.6 19.2 76.8 0l192-192 345.6 345.6c19.2 19.2 57.6 19.2 76.8 0 25.6-19.2 25.6-51.2 0-76.8z" horiz-adv-x="1024" />
<glyph glyph-name="check" unicode="&#58917;" d="M512 896C229.308 896 0.102 666.795 0.102 384s229.206-512 512-512 512 229.205 512 512S794.795 896 512 896z m276.207-381.047L441.924 168.66999999999996c-6.826-6.827-18.688-6.042-26.47 1.707l-23.21 23.21-155.137 155.136a19.934 19.934 0 0 0 0 28.211l42.308 42.309a19.934 19.934 0 0 0 28.212 0L429.568 297.29999999999995 717.67 585.387c6.827 6.826 18.688 6.058 26.47-1.707l42.31-42.308c7.799-7.8 8.532-19.644 1.706-26.47z m0 0" horiz-adv-x="1024" />
</font>
</defs></svg>
<!doctype html> <!doctype html>
<html lang="en"> <html lang="en">
<head> <head>
<meta charset="utf-8"> <meta charset="utf-8">
<title>银盾保险在线</title> <title>银盾保险在线</title>
<base href="/"> <base href="/">
<link rel="shortcut icon" href="https://www.ydinsurance.cn/wp-content/uploads/2018/04/favicon.gif"> <link rel="shortcut icon" href="https://www.ydinsurance.cn/wp-content/uploads/2018/04/favicon.gif">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no"> <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no">
<link rel="stylesheet" type="text/css" href="./assets/iconfont/iconfont.css" />
</head> </head>
<body> <body>
<app-root></app-root> <app-root></app-root>
</body> </body>
...@@ -19,4 +23,5 @@ ...@@ -19,4 +23,5 @@
s.parentNode.insertBefore(hm, s); s.parentNode.insertBefore(hm, s);
})(); })();
</script> </script>
</html> </html>
\ No newline at end of file
...@@ -380,6 +380,11 @@ ol li { ...@@ -380,6 +380,11 @@ ol li {
.limbo{ .limbo{
position: relative; position: relative;
height: 100%;
}
.specialWrapper{
padding: 10px 10px 0 10px;
} }
@keyframes slowUp { @keyframes slowUp {
0% { 0% {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment