Advertisement
Guest User

Untitled

a guest
Nov 16th, 2019
128
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 1.50 KB | None | 0 0
  1. body{
  2.     background-image:url('Gambar/4.jpg');
  3.     background-repeat:no-repeat;
  4.     background-size:100% 100%;
  5.     min-height:500px;
  6.     font-family:Arial,Hervetica,Sans-serif;
  7.     font-size:12px;
  8.     margin:20px;
  9.     padding:0;
  10. }
  11.  
  12. input ,form,textarea,h1,h2,h3,h4,h5,h6{
  13.     margin:0;
  14.     padding:0;
  15. }
  16. h1{
  17.     font-size:18px;
  18. }
  19.  
  20. h2{
  21.     font-size:14px;
  22.     color:#999999
  23. }
  24. h3{
  25.     font-size:13px;
  26.     border-color:solid 1px #DEDEDE;
  27. }
  28. a:link,a:visited{
  29.     color:#0033CC;
  30. }
  31. a:hover{
  32.     text-decoration:none;
  33. }
  34.  
  35. /* CSS  untuk Header  */
  36.  
  37. #container{
  38.     width:750px;
  39.     margin:0 auto;
  40.    
  41. }
  42. #topbar{
  43.     width:auto;
  44.     display:block;
  45.     height:40px;
  46.     background:#A9F5F2;
  47.     top:10px;
  48. }
  49. #navbar{
  50.     width:auto;
  51.     display:block;
  52.     height:28px;
  53. }
  54.  
  55. #navbar a{
  56.     height:28px;
  57.     line-height:20px;
  58.     padding:0p;
  59.     display:inline;
  60. }
  61.  
  62. /* css untuk body */
  63.  
  64. #main {
  65.     width:auto;
  66.     display:block;
  67.     padding:10px 0;
  68.     background:#CCC;
  69. }
  70.  
  71. #column_left {
  72.     width:400px;
  73.     margin-right:20px;
  74.     float:float;
  75. }
  76. #column_right {
  77.     width:160px;
  78.     margin-right:20px;
  79.     float:float;
  80. }
  81.  
  82. #column_right_adsense{
  83.     width:120px;
  84.     float:left;
  85. }
  86. div.spacer{
  87.     clear:both;
  88.     height:10px;
  89.     display:block;
  90. }
  91.  
  92. /* css untuk footer */
  93. #footer{
  94.     width:auto;
  95.     display:block;
  96.     padding:10 px 0;
  97.     font-size:11px;
  98.     color:#666666
  99. }
  100.  
  101. @media screen and(max-width:780px){
  102.     #container{
  103.         width:100%;
  104.     }
  105.     #topbar{
  106.         width:100%;
  107.     }
  108.     #main{
  109.         width:100%;
  110.     }  
  111.     #column_left{
  112.         width:98%;
  113.     }
  114.     #column_right{
  115.         width:100%;
  116.     }
  117.     #footer{
  118.         width:100%;
  119.     }
  120. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement