Advertisement
pan7nikt

style.css

Jan 17th, 2022 (edited)
407
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 1.02 KB | None | 0 0
  1. #contenner{
  2.     background-color: aqua;
  3.     width: 100%;
  4.     height: 1000px;
  5.     border-radius: 10px;
  6.     margin: auto;
  7. }
  8. #banner{
  9.     text-align: center;
  10.     height: 100px;
  11.     width: 100%;
  12. }
  13. #dest{
  14.     color: white;
  15.     background-color: blue;
  16.     height: 250px;
  17.     width: 49.5%;
  18.     text-align: center;
  19.     border-radius: 20px;
  20.     float: left;
  21.     border-style: solid;
  22.     border-color: black;
  23. }
  24. #dest td{
  25.     border-style: solid;
  26.     border-color: yellowgreen;
  27.     text-align: center;
  28.     border-width: 2px;
  29. }
  30. #register{
  31.     height: 250px;
  32.     width: 49.5%;
  33.     float: left;
  34.     background-color: aquamarine;
  35.     text-align: center;
  36.     border-radius: 20px;
  37.     border-style: solid;
  38.     border-color: black;
  39. }
  40. #reservation{
  41.     background-color: red;
  42.     width: 49.5%;
  43.     height: 505px;
  44.     float: right;
  45.     text-align: center;
  46.     border-radius: 20px;
  47.     border-style: solid;
  48.     border-color: black;
  49. }
  50. footer{
  51.     clear: both;
  52.     height: 50px;
  53.     background-color: yellow;
  54. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement