Advertisement
pan7nikt

ptaki\style.css

Mar 31st, 2022 (edited)
598
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 1.43 KB | None | 0 0
  1. body{
  2.     width: 80%;
  3.     font-family: Verdana;
  4.     text-align: center;
  5.     display: flex;
  6.     justify-content: center;
  7.     margin: auto;
  8.     height: 600px;
  9. }
  10.  
  11.  
  12. #kontener
  13. {
  14.     width: 100%;
  15.     height: 100%;
  16. }
  17.  
  18. #banner
  19. {
  20.     width: 100%;
  21.     height: 25%;
  22.     float: left;
  23.     text-align: center;
  24.     display: flex;
  25.     align-items: center;
  26.     justify-content: center;
  27.  
  28.     background-color: #E2EFD9;
  29. }
  30.  
  31. a
  32. {
  33.     padding-top: 50px;
  34. }
  35.  
  36. h2, select{
  37.     margin: 20px;
  38. }
  39.  
  40. table{
  41.     border-style: solid;
  42.     border-color: black;
  43.     border-collapse: collapse;
  44.     border-width: 2px;
  45.     text-align: center;
  46.     width: 80%;
  47.     margin: auto;
  48. }
  49. table td{
  50.     border-style: solid;
  51.     border-color: black;
  52.     border-collapse: collapse;
  53. }
  54.  
  55.  
  56. #lewy
  57. {
  58.     width: 30%;
  59.     height: 50%;
  60.     background-color: #9CC2E5;
  61.     float: left;
  62.     text-align: center;
  63. }
  64.  
  65. #prawy
  66. {
  67.     width: 70%;
  68.     height: 50%;
  69.     float: left;
  70.     text-align: center;
  71.     align-items: center;
  72.     justify-content: center;
  73.     background-color: #A8D08D;
  74. }
  75.  
  76. #stopka
  77. {
  78.     width: 100%;
  79.     height: 25%;
  80.     float: left;
  81.     display: flex;
  82.     align-items: center;
  83.     justify-content: center;
  84.     background-color: #538135;
  85.     color: black;
  86. }
  87.  
  88. img
  89. {
  90.     width: 80%;
  91.     margin-top: 70px;
  92.     box-shadow: 5px 5px 5px;
  93. }
  94.  
  95. a{
  96.     color: #4472C4;
  97.     font-size: 40px;
  98.     padding: 20px;
  99.     align-self: center;
  100. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement