Advertisement
Guest User

Untitled

a guest
Jul 24th, 2017
58
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.05 KB | None | 0 0
  1. *{
  2. margin: 0;
  3. padding: 0;
  4. }
  5. .flex-center{
  6. display: flex;
  7. align-items: center;
  8. justify-content: center;
  9. }
  10. .embed-container{
  11. width: 100%;
  12. height: 100vh;
  13. margin: 0;
  14. padding: 0;
  15. color: #ecf0f1;
  16. }
  17. .embed-container>iframe{
  18. width: 100%;
  19. height: 100vh;
  20. z-index: -99;
  21. opacity: .9;
  22. }
  23. .embed-container>.conteudo{
  24. z-index: 10;
  25. position: absolute;
  26. bottom: 0;
  27. left: 0;
  28. }
  29. .conteudo{
  30. width: 100%;
  31. height: 100vh;
  32. flex-direction: column;
  33. text-shadow: 2px 2px 2px rgba(0, 0, 0, .7);
  34. }
  35. .flexed{
  36. display: flex;
  37. }
  38. .btn{
  39. background: #CD201F;
  40. width: 250px;
  41. height: 50px;
  42. font-size: 17px;
  43. border: 0;
  44. border-radius: 4px;
  45. color: #ffffff;
  46. cursor: pointer;
  47. outline: none;
  48. text-shadow: none !important;
  49. box-shadow: 0 3px 6px rgba(0,0,0,0.16), 0 3px 6px rgba(0,0,0,0.23);
  50. }
  51. .yt{
  52. color: #CD201F;
  53. margin-left: 10px;
  54. margin-right: 10px;
  55. text-align: center;
  56. }
  57. .yt::after{
  58. content: '';
  59. width: 150px;
  60. height: 5px;
  61. background: currentColor;
  62. display: block;
  63. margin: 7px auto;
  64. box-shadow: 0px 2px 2px rgba(0, 0, 0, .7);
  65. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement