Advertisement
Guest User

style.css

a guest
Oct 19th, 2018
111
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 1.30 KB | None | 0 0
  1. *{
  2.     margin:0;
  3.     padding:0;
  4. }
  5. h2{
  6.     margin: 0 0 10px;
  7.     padding: 10px 0 3px;
  8. }
  9. h3{
  10.     font-size: 1em;
  11.     color:#6b361c;
  12.     background: #e2bfae;
  13.     height: 24px;
  14.     line-height:24px;
  15. }
  16. body{
  17.     font: 0.8em Arial;
  18.     background: #c5b3b3;
  19.     color: #6b361c;
  20. }
  21. a{
  22.     color:#6b361c;
  23.     text-decoration: none;
  24. }
  25. a:visited{
  26.     color:#8b0830;
  27.     text-decoration: none;
  28. }
  29. a:hover{
  30.     color:#e27959;
  31.     text-decoration: none;
  32. }
  33. ul{
  34.     padding: 0;
  35.     margin: 0 0 10px;
  36.     margin-left: 40px;
  37. }
  38. li{
  39.     list-style-type: none;
  40. }
  41. img{
  42.     border-style:solid;
  43.     border-width: 2px;
  44.     border-color: #30221b;
  45.     opacity: 0.5;
  46. }
  47. footer{
  48. text-align: center;
  49. background: #c5b3b3;
  50. border-top: 1px solid #30221b;
  51. }
  52. #wrap{
  53.     padding: 10px 10px 3px 10px;
  54.     width: 760px;
  55.     margin:20px auto;
  56.     background: #d4c9c9;
  57. }
  58. #sadrzaj{
  59.     float:left;
  60.     width:760px;
  61.     border: 2px dotted #d4c9c9;
  62. }
  63. #glavna_kolona{
  64.     float:left;
  65.     width:500px;
  66.     min-height: 850px;
  67.    
  68. }
  69.  
  70. #desna_kolona{
  71.     float:left;
  72.     width:190px;
  73.     min-height: 850px;
  74. }
  75. #sadrzaj ul{
  76.     background: #e7dcdc;
  77. }
  78. #meni ul li a{
  79.     float: left;
  80.     color: white;
  81.     background: black;
  82.  
  83. }
  84.  
  85. img:hover{
  86.     opacity: 1;
  87. }
  88. /*.articles(){
  89.     color: #444;
  90. }*/
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement