xref: /plugin/vshare/all.css (revision a20a97f9a2e65105513a710e8d2e3d414f4542ae)
1.vshare {
2    aspect-ratio: 16/9;
3}
4
5div.vshare {
6    box-sizing: border-box;
7    border: 1px solid __border__;
8    display: flex;
9    flex-direction: column;
10    justify-content: center;
11    align-items: center;
12    text-align: center;
13    cursor: pointer;
14    background-image: url(video.svg);
15    background-position: top left;
16    background-repeat: no-repeat;
17    background-size: 5em 5em;
18}
19
20iframe.vshare__left,
21div.vshare__left {
22    float: left;
23    margin-right: 1em;
24}
25
26iframe.vshare__right,
27div.vshare__right {
28    float: right;
29    margin-left: 1em;
30}
31
32iframe.vshare__center,
33div.vshare__center {
34    text-align: center;
35    margin-left: auto;
36    margin-right: auto;
37    display: block;
38}
39
40iframe.vshare__none,
41div.vshare__none {
42    margin: 1px 3px 1px 3px;
43}
44