Advertisement
x-venom

układ zamknięty dwukolumnowy(kolumny obok nagłówka)

Aug 28th, 2018
148
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.93 KB | None | 0 0
  1. body {
  2. background: #kolortła;
  3. }
  4.  
  5. .header h1, .navbar, footer, .feed-links {
  6. display:none;
  7. }
  8.  
  9. .header {
  10. position:relative;
  11. background: url(adres-nagłówka);
  12. border: 10px solid #888;/*kolor ramki nagłówka*/
  13. width:470px;
  14. height:600px;
  15. left:204px;
  16. top: 0px;
  17. }
  18.  
  19. .column-left-inner {
  20. position:relative;
  21. top:-650px;
  22. left:0px;
  23. width:200px;
  24. background: #ccc !important;
  25. border-left: 10px solid #888;/*kolor lewej ramki kolumny*/
  26. border-top: 10px solid #888;/*kolor górnej ramki kolumny*/
  27. }
  28.  
  29. .column-right-inner {
  30. position:relative;
  31. top:-650px;
  32. right:40px;
  33. width:200px;
  34. background: #ccc !important;
  35. border-right: 10px solid #888;/*kolor prawej ramki kolumny*/
  36. border-top: 10px solid #888;/*kolor górnej ramki kolumny*/
  37. }
  38.  
  39. #Blog1 {
  40. width:468px;
  41. position:relative;
  42. top:-30px;
  43. left:35px;
  44. background: #ccc !important;/*kolor tła postów*/
  45. }
  46.  
  47. .main-inner {
  48. background: #888;/*kolor tła pod kolumnami i postami*/
  49. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement