The Website for anonymous systems that finally could work
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.

72 lines
1.1 KiB

2 years ago
  1. .vid1 {
  2. object-fit: cover;
  3. position: absolute;
  4. top: 0;
  5. left: 0;
  6. height: 100%;
  7. width: 100%;
  8. }
  9. .vid2 {
  10. object-fit: cover;
  11. position: absolute;
  12. top: 0;
  13. left: 0;
  14. height: 100%;
  15. width: 100%;
  16. }
  17. .video-wrapper1 {
  18. width: 40vw;
  19. height: 100vh;
  20. position: relative;
  21. overflow: hidden;
  22. text-align: center;
  23. display: flex;
  24. align-items: center;
  25. justify-content: center;
  26. }
  27. .video-wrapper2 {
  28. width: 40vw;
  29. height: 100vh;
  30. position: relative;
  31. overflow: hidden;
  32. text-align: center;
  33. display: flex;
  34. align-items: center;
  35. justify-content: center;
  36. }
  37. .header1{
  38. position: relative;
  39. color: white;
  40. text-shadow: 1px 1px 8px rgba(0,0,0,0.6);
  41. }
  42. .header2{
  43. position: relative;
  44. color: white;
  45. text-shadow: 1px 1px 8px rgba(0,0,0,0.6);
  46. }
  47. .grid_container {
  48. display: grid;
  49. grid-template-columns: auto auto;
  50. }
  51. .item1 {
  52. width: 40 vw;
  53. height: 100 vh;
  54. }
  55. .item2 {
  56. width: 40 vw;
  57. height: 100 vh;
  58. }
  59. @media screen and (max-width: 768px) {
  60. .grid_container {
  61. grid-template-columns: auto;
  62. display: grid;
  63. }
  64. .item1 {
  65. width: 90 vw;
  66. }
  67. .item2 {
  68. width: 90 vw;
  69. }
  70. }