Advertisement
s4ros

e.14.2021-css

Jan 20th, 2021
788
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.88 KB | None | 0 0
  1. body {
  2.     font-family: Georgia;
  3.     background-color: #FFFAFA;
  4. }
  5.  
  6. form {
  7.     margin: 80px;
  8. }
  9.  
  10. table {
  11.     color: white;
  12.     text-align: center;
  13.     width: 80%;
  14.     border: 1px dotted white;
  15. }
  16.  
  17. tr:hover {
  18.     background-color: #D3D3D3;
  19.     color: black;
  20. }
  21.  
  22. #logo {
  23.     background-image: url("wzor.png");
  24.     background-size: contain;
  25.     background-repeat: no-repeat;
  26.     background-color: #FF7F50;
  27.     width: 25%;
  28.     height: 100px;
  29.     float: left;
  30. }
  31.  
  32. #baner {
  33.     background-color: #FF7F50;
  34.     text-align: center;
  35.     width: 75%;
  36.     height: 100px;
  37.     font-size: 130%;
  38.     float: right;
  39. }
  40.  
  41. #glowny {
  42.     background-color: #FF7F50;
  43.     padding: 70px;
  44.  
  45. }
  46.  
  47. #lewy {
  48.     width: 40%;
  49.     height: 400px;
  50. }
  51.  
  52. #prawy {
  53.     width: 60%;
  54.     height: 400px;
  55.     text-align: right;
  56. }
  57.  
  58. #stopka {
  59.     background-color: #FF7F50;
  60.     padding: 20px;
  61. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement