Advertisement
SegaMegaPro

Untitled

Feb 3rd, 2023
48
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.74 KB | None | 0 0
  1. html,body
  2. {
  3.     background-color: white;
  4.     font-family: Font, sans-serif;
  5.     margin: 0;
  6.     padding: 0;
  7. }
  8. ::-webkit-scrollbar
  9. {
  10.     width: 0;
  11. }
  12. @font-face
  13. {
  14.     src: url(Font.ttf);
  15.     font-family: Font;
  16.  
  17. }
  18. ._sideScroll
  19. {
  20.     overflow-x: hidden;
  21.     display: flex;
  22. }
  23. .ContentBox1
  24. {
  25.     border:1px solid blue;
  26.     min-width: 50vw;
  27.     justify-content: center;
  28.     align-items: center;
  29.     font-size: 4ch;
  30. }
  31. .ContentBox1 div
  32. {
  33.     border: 1px solid red;
  34.     margin: 0;
  35.     padding: 0;
  36.     min-width: 50vw;
  37.     min-height: 100vh;
  38.     display: flex;
  39.     justify-content: center;
  40.     align-items: center;
  41.     font-size: 4ch;
  42. }
  43. .ContentBox1 div:nth-child(even)
  44. {
  45.     background-color: teal;
  46.     color: white;
  47. }
  48.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement