Advertisement
pan7nikt

style.css

Sep 6th, 2022
782
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 1.76 KB | None | 0 0
  1. #container
  2. {
  3.     height: 2160px;
  4.     width: 960px;
  5.     border-radius: 5px;
  6.     border-style: solid;
  7.     border-color: black;
  8.     border-width: 2px;
  9.     background-color: red;
  10. }
  11.  
  12. #banner
  13. {
  14.     height: 12%;
  15.     width: 100%;
  16.     float: left;
  17.     background-color: blue;
  18. }
  19.  
  20. #navbar
  21. {
  22.     height: 2%;
  23.     width: 100%;
  24.     float: left;
  25.     background-color: aqua;
  26. }
  27.  
  28. #content
  29. {
  30.     font-size: 0px;
  31.     height: 83%;
  32.     width: 100%;
  33.     float: left;
  34.     background-color: purple;
  35. }
  36.  
  37. #highlights
  38. {
  39.     margin-left: 20px;
  40.     margin-top: 10px;
  41.     height: calc(15% - 10px);
  42.     width: 60%;
  43.     background-color: brown;
  44.     display: inline-block;
  45. }
  46.  
  47. #contactinfo
  48. {
  49.     margin-top: 10px;
  50.     margin-left: 25px;
  51.     height: calc(15% - 10px);
  52.     width: 33%;
  53.     background-color: brown;
  54.     display: inline-block;
  55.     margin-right: 20px;
  56. }
  57.  
  58. #welcome
  59. {
  60.     margin-left: 20px;
  61.     margin-top: 10px;
  62.     height: calc(20% - 10px);
  63.     width: 60%;
  64.     background-color: brown;
  65. }
  66.  
  67. #who
  68. {
  69.     margin-left: 20px;
  70.     margin-top: 10px;
  71.     height: calc(50% - 10px);
  72.     width: 60%;
  73.     background-color: brown;
  74. }
  75.  
  76. #newsletter
  77. {
  78.     margin-left: 20px;
  79.     margin-top: 10px;
  80.     margin-bottom: 10px;
  81.     height: calc(15% - 20px);
  82.     width: 60%;
  83.     background-color: brown;
  84. }
  85.  
  86. #stopka
  87. {
  88.     height: 3%;
  89.     width: 100%;
  90.     float: left;
  91.     background-color: blue;
  92. }
  93.  
  94. .topbar
  95. {
  96.     width: 100%;
  97.     height: 40px;
  98.     float: left;
  99.     background-color: #82bede;
  100. }
  101.  
  102. .arrowbutton
  103. {
  104.     margin-top: 2%;
  105.     margin-bottom: auto;
  106.     margin-left: 16px;
  107.     float: left;
  108. }
  109.  
  110. p
  111. {
  112.     margin-top: 2%;
  113.     margin-left: 16px;
  114.     text-align: left;
  115.     float: left;
  116.     font-size: 10px;
  117. }
  118.  
  119. #worldmap
  120. {
  121.     height: 5px;
  122. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement