Advertisement
Guest User

Untitled

a guest
Dec 6th, 2016
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.56 KB | None | 0 0
  1. <div id="boxes">
  2. <div id="calculator">
  3. <p>TEST</p>
  4. </div>
  5.  
  6. <div id="lore">
  7. <p>TEST</p>
  8. </div>
  9.  
  10. <div id="artwork">
  11. <p>TEST</p>
  12. </div>
  13.  
  14. <div id="news">
  15. <p>TEST</p>
  16. </div>
  17.  
  18. <div id="tips">
  19. <p>TEST</p>
  20. </div>
  21.  
  22. <div id="easter_eggs">
  23. <p>TEST</p>
  24. </div>
  25. </div>
  26.  
  27. #boxes {
  28. }
  29. #boxes div{
  30. }
  31.  
  32. #calculator {
  33. display:inline-block;
  34. height:100%;
  35. max-height:250px;
  36. width:100%;
  37. max-width:250px;
  38. border:solid black;
  39. border-width:medium;
  40. margin:auto;
  41. }
  42.  
  43. #lore {
  44. display:inline-block;
  45. height:100%;
  46. max-height:250px;
  47. width:100%;
  48. max-width:250px;
  49. border:solid black;
  50. border-width:medium;
  51. margin:auto;
  52. }
  53.  
  54. #artwork {
  55. display:inline-block;
  56. height:100%;
  57. max-height:250px;
  58. width:100%;
  59. max-width:250px;
  60. border:solid black;
  61. border-width:medium;
  62. margin:auto;
  63. }
  64.  
  65. #news {
  66. display:inline-block;
  67. height:100%;
  68. max-height:250px;
  69. width:100%;
  70. max-width:250px;
  71. border:solid black;
  72. border-width:medium;
  73. margin:auto;
  74. }
  75.  
  76. #tips {
  77. display:inline-block;
  78. height:100%;
  79. max-height:250px;
  80. width:100%;
  81. max-width:250px;
  82. border:solid black;
  83. border-width:medium;
  84. margin:auto;
  85. }
  86.  
  87. #easter_eggs {
  88. display:inline-block;
  89. height:100%;
  90. max-height:250px;
  91. width:100%;
  92. max-width:250px;
  93. border:solid black;
  94. border-width:medium;
  95. margin:auto;
  96. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement