-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.css
75 lines (75 loc) · 1.26 KB
/
index.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
#skyteam-head2{
animation: mymove 2s;
position:absolute;
opacity:100;
top: 70px;
right:10%;
font-size:20px;
}
@keyframes mymove{
from{top: 0%;opacity: 0;}
to{top: 70px; opacity: 10;}
}
.layui-col-md3{
background-color: aqua;
height: 50px;
border-radius: 10px 0px 0px 10px;
line-height: 50px;
text-align: left;
font-size: 20px;
float: left;
}
.layui-col-md12{
background-color: aqua;
height: 50px;
border-radius: 10px;
line-height: 50px;
text-align: right;
font-size: 20px;
float: right;
width:100%;
}
.skyteam-alink{
display: none;
}
img{
border-radius:10px;
}
.newarticle{
float:right;
width:70%;
position:absolute;
right:0px;
padding:5px;
border-radius:10px;
height:350px;
overflow:scroll;
}
.skyteam-warp{
background-color:blue;
}
.st-article{
background-color:#191919;
color:white;
border-radius:10px;
padding:5px;
}
p{
font-size:20px;
}
.stwarp{
background-image: linear-gradient( 135deg, #81FFEF 10%, #F067B4 100%);
height:350px;
border-radius:10px;
margin-top:5px;
}
.navbar{
margin-top:5px;
}
.newarticle{
animation: bodymove 2s;
}
@keyframes bodymove{
from{right: -100%;opacity: 0;}
to{right: 0%; opacity: 10;}
}