-
Notifications
You must be signed in to change notification settings - Fork 7
/
index.css
66 lines (65 loc) · 1 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
.vv-visual {
position: relative;
overflow: hidden;
font-size: 0;
}
.vv-expand,
.vv-has-aspect .vv-wrapper,
.vv-expand .vv-wrapper,
.vv-has-aspect .vv-picture,
.vv-expand .vv-picture,
.vv-has-aspect .vv-asset,
.vv-expand .vv-asset {
position: absolute;
left: 0;
top: 0;
width: 100%;
height: 100%;
}
.vv-aspect-shim {
display: inline-block;
height: 100%;
}
.vv-placeholder {
position: absolute;
left: 0;
top: 0;
width: 100%;
height: 100%;
}
.vv-slot {
font-size: 1rem;
position: relative;
display: inline-block;
max-width: 100%;
}
.vv-align-bottom {
vertical-align: bottom;
}
.vv-align-middle {
vertical-align: middle;
}
.vv-align-top {
vertical-align: top;
}
.vv-align-left {
text-align: left;
}
.vv-align-center {
text-align: center;
}
.vv-align-right {
text-align: right;
}
.vv-fade-enter-active,
.vv-fade-leave-active {
transition: opacity 0.3s;
}
.vv-fade-leave-active {
position: absolute;
transition-delay: 0.3s;
}
.vv-fade-enter,
.vv-fade-leave-to {
opacity: 0;
}