Advertisement
Guest User

Untitled

a guest
May 22nd, 2019
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.05 KB | None | 0 0
  1. <html>
  2. <head>
  3. <title>Niebieska Strona </title>
  4. <style>
  5. #container{
  6. width:800px;
  7. height:500px;
  8. background-image: url(tło.jpg);
  9. margin-top:100px;
  10. margin-left:auto;
  11. margin-right:auto;
  12. }
  13.  
  14. #blok1{
  15. width:180px;
  16. height:152px;
  17. margin:10px;
  18. margin-right:0px;
  19. }
  20.  
  21. #blok2{
  22. width:585px;
  23. height:152px;
  24. margin:10px;
  25. }
  26.  
  27. #blok3{
  28. width:775px;
  29. height:152px;
  30. margin:10px;
  31. margin-top:0px;
  32. }
  33.  
  34. #blok4{
  35. width:775px;
  36. height:152px;
  37. margin:10px;
  38. margin-top:0px;
  39. }
  40.  
  41. .tlo{
  42. float:left;
  43. background-color:DodgerBlue;
  44. border:1px solid blue;
  45. font-family:georgian;
  46. color:yellow;
  47. text-align:center;
  48. padding-top:10px;
  49. box-sizing:border-box;
  50. filter:alpha(opacity=70);
  51. opacity: 0.7;
  52. -moz
  53. -opacity: 0.7;
  54. }
  55.  
  56. .tlo:hover{
  57. background-color:MidnightBlue;
  58. color:white;
  59. }
  60.  
  61. </style>
  62. </head>
  63. <body>
  64. <div id="container">
  65. <div id="blok1" class="tlo"></div>
  66. <div id="blok2" class="tlo"></div>
  67. <div id="blok3" class="tlo"></div>
  68. <div id="blok4" class="tlo"></div>
  69. </div>
  70. </body>
  71. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement