You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

43 lines
755 B

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