Advertisement
Guest User

Untitled

a guest
Apr 19th, 2014
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 1.61 KB | None | 0 0
  1. body{
  2.     background-color:brown;
  3. }
  4.  
  5. #navigacija{
  6.     //margin:0 auto;
  7.     margin-right:255px;
  8.     display:block;
  9.     margin-top:30px;
  10.     height:45px;
  11.     //background-color:green;
  12.     //margin-left:57%;
  13. }
  14.  
  15. #navigacija>div {
  16.     width: 100px;
  17.     float: right;
  18. }
  19.  
  20. div.topNaviagationLink{
  21.     display:inline-block;
  22.     vertical-align:top;
  23.     text-align:center;
  24.     background-color:maroon;
  25.     height:50%;
  26.     padding:10px;
  27.     //width:100px;
  28.     //float:left;
  29. }
  30.  
  31. #navigacija a{
  32.     text-decoration:none;
  33.     background-color:maroon;
  34.     color:white;
  35.     padding:10px;
  36. }
  37.  
  38. #mainPicture{
  39.     margin:0 auto;
  40.     margin-top:10px;
  41.     background-color:white;
  42.     padding:10px;
  43.     width:800px;
  44.     height:400px;
  45. }
  46.  
  47. div.picture{
  48.     background-image:url("header.jpg");
  49.     background-position:center;
  50.     background-clip:mainPicture;
  51.     background-size:955px;
  52.     //width:800px;
  53.     height:400px;
  54. }
  55.  
  56. div.contentBox{
  57.     margin:0 auto;
  58.     margin-top:15px;
  59.     background-color:white;
  60.     width:800px;
  61.     padding:10px;
  62.     text-align:center;
  63. }
  64.  
  65. div.contentTitle{
  66.     color:red;
  67.     font-size:25px;
  68.     text-align:center;
  69.     font-weight:bold;
  70. }
  71.  
  72. div.contentText{
  73.     line-height:30px;
  74. }
  75.  
  76. #forma{
  77.     float:right;
  78.     //display:inline;
  79.     margin-left:auto;
  80.     margin-right:0;
  81.     border-color:red;
  82.     border-style:dashed;
  83.     border-width:1px;
  84.     width:210px;
  85.     //text-align:right;
  86. }
  87.  
  88. #prasanje{
  89.     display:block;
  90.     margin:auto;
  91. }  
  92.  
  93. #kopce{
  94.     box-shadow:0;
  95.     background-color:white;
  96.     border-radius:5px;
  97.     border-width:1px;
  98. }
  99.  
  100. span{
  101.     letter-spacing:3px;
  102. }
  103.  
  104. #footer{
  105.     margin-top:15px;
  106.     text-align:center;
  107.     color:white;
  108. }
  109.  
  110. p{
  111.  
  112. }
  113.  
  114. p:first-line{
  115.     background-color:magenta;
  116.     text-decoration:underline;
  117. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement