style.css 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  1. body {
  2. background-color: #f2f2f2;
  3. }
  4. /*.column {
  5. float: left;
  6. width: 50%;
  7. }'/
  8. /* Split the screen in half */
  9. /*.split {
  10. height: 100%;
  11. width: 50%;
  12. position: fixed;
  13. z-index: 1;
  14. top: 0;
  15. overflow-x: hidden;
  16. padding-top: 20px;
  17. }
  18. /* Control the left side */
  19. /*.left {
  20. left: 0;
  21. background-color: white;
  22. }
  23. /* Control the right side */
  24. /*.right {
  25. right: 0;
  26. background-color: white;
  27. }
  28. .column {
  29. float: left;
  30. width: 33.33%;
  31. }
  32. .top {
  33. height: 50vh;
  34. background-color: #f1f1f1;
  35. }
  36. .bottom {
  37. height: 50vh;
  38. background-color: #f1f1f1;
  39. }*/
  40. /* If you want the content centered horizontally and vertically */
  41. .centered {
  42. position: absolute;
  43. top: 50%;
  44. left: 40%;
  45. transform: translate(-50%, -50%);
  46. text-align: center;
  47. margin: 10;
  48. }
  49. .header_centered {
  50. position: absolute;
  51. top: 8%;
  52. left: 50%;
  53. transform: translate(-50%, -50%);
  54. text-align: center;
  55. margin: 10;
  56. }
  57. .thick-border {
  58. border: 3px solid black;
  59. border-collapse: collapse;
  60. }
  61. /* Style the image inside the centered container, if needed */
  62. .centered img {
  63. max-width: 140%;
  64. }
  65. .container {
  66. display: flex;
  67. }
  68. .column {
  69. flex: 1;
  70. /*for demo purposes only */
  71. background: #f2f2f2;
  72. border: 1px solid #e6e6e6;
  73. box-sizing: border-box;
  74. }
  75. .column-one {
  76. order: 1;
  77. }
  78. .column-two {
  79. order: 2;
  80. }
  81. .column-three {
  82. order: 3;
  83. }