Advertisement
Guest User

Untitled

a guest
Aug 23rd, 2017
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.12 KB | None | 0 0
  1. video {
  2. position:fixed;
  3. top:50%;
  4. left:50%;
  5. min-width:100%;
  6. min-height:100%;
  7. width:auto;
  8. height:auto;
  9. z-index:-100;
  10. transform:translateX(-50%) translateY(-50%);
  11. background-size:cover;
  12. transition:1s opacity;
  13. }
  14.  
  15. .outer {
  16. display:table;
  17. position:absolute;
  18. height:99%;
  19. width:99%;
  20. }
  21.  
  22. .middle {
  23. display:table-cell;
  24. vertical-align:middle;
  25. }
  26.  
  27. .inner {
  28. width:100%;
  29. font-family: 'Lato ',sans-serif;
  30. -webkit-font-smoothing:subpixel-antialiased!important;
  31. color:white;
  32. font-size:1.2rem;
  33. text-align:center;
  34. margin:0px auto 0px auto;
  35. }
  36.  
  37. .vol {
  38. width:100%;
  39. font-family: 'Lato ',sans-serif;
  40. -webkit-font-smoothing:subpixel-antialiased!important;
  41. color:white;
  42. font-size:1.2rem;
  43. text-align:center;
  44. margin:0px auto 0px auto;
  45. }
  46.  
  47. div#h1d {
  48. display:inline-block;
  49. font-size:39px;
  50. margin:0px auto 0px auto;
  51. }
  52. div#h1d {
  53. display:inline-block;
  54. font-size:25px;
  55. margin:0px auto 0px auto;
  56. }
  57.  
  58. a {
  59. display:inline-block;
  60. color:#fff;
  61. text-decoration:none;
  62. background:rgba(0,0,0,0.5);
  63. padding:10px;
  64. transition:.6s background;
  65. border-radius:10px;
  66. }
  67.  
  68. a:hover {
  69. background:rgba(0,0,0,0.9);
  70. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement