Advertisement
ekookda

layout.css

Sep 21st, 2016
99
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. /* tambahkan properties clear untuk menghapus efek float */
  2. .clear {
  3.   clear:both;  
  4. }
  5.  
  6. body {
  7.   width: 1024px;
  8.   height: 768px;
  9.   margin:10px;
  10. }
  11.  
  12. header{
  13.   width: 900px;
  14.   height: 100px;
  15.   background-color: red;
  16.   border-radius: 10px 10px 0 0;
  17.   text-align: center;
  18. }
  19.  
  20. /* penambahan */
  21. header h1 {
  22.   color: white;
  23.   padding-top: 25px;
  24. }
  25.  
  26. h1{
  27.   margin: 0;
  28.   color: #16A085;
  29.   text-align:center;
  30.   padding-top: 30px;
  31.   font-family:'advent pro',sans-serif;
  32. }
  33.  
  34. nav{
  35.   width: 900px;
  36.   height: 50px;
  37.   background-color: #303847;
  38.   margin-top:5px;
  39. }
  40.  
  41. #konten {
  42.   width: 900px;
  43.   height: auto: ;
  44.   margin-top: 5px;
  45.   background-color: grey;
  46. /*   float: left; */
  47. }
  48.  
  49.  
  50. /* #kontenleft{ */
  51. /* tanda # jika attribute nya id. */
  52.  
  53. .kontenleft {
  54.   width: 575px;
  55.   height:280px;
  56. /*   background-color: grey; */
  57.   padding: 10px;
  58.   margin-right: 5px;
  59.   float: left;
  60. }
  61.  
  62. .kontenright{
  63.   width: 300px;
  64.   height:282px;
  65.   margin-top: 10px;
  66.   background-color: green;
  67.   float: left;
  68. }
  69.  
  70. h2{
  71.   margin: 0;
  72.   color: #16A085;
  73.   text-align:center;
  74.   padding-top: 20px;
  75.   font-family: 'advent pro',sans-serif;
  76. }
  77.  
  78. #konten1{
  79.   width: 900px;
  80.   height: 300px;
  81.   margin-top: 5px;
  82.   /* float:left; */
  83. }
  84.  
  85. .kotak1{
  86.   width: 286px;
  87.   height: 560px;
  88.   background-color: #303847;
  89.   margin-left:3px;
  90.   padding: 5px;
  91.   float: left;
  92. }
  93.  
  94. .img{
  95.   width: 286px;
  96.   height:150px;
  97.   background-color: #73e0b8;
  98. }
  99.  
  100. .paragraf{
  101.   width: 286px;
  102.   height: 150px;
  103.   /* padding: 15px; */
  104.   color: white;
  105. }
  106.  
  107. footer{
  108.   width: 900px;
  109.   height: 45px;
  110.   background-color: black;
  111.   margin-top: 5px;
  112.   margin-bottom: 10px;
  113.   border-radius: 0 0 10px 10px;
  114.   color: #73e0b8;
  115.   font-family:'advent pro',sans-serif;
  116.   text-align: center;
  117.   padding-top: 25px;
  118.   font-weight: bold;
  119. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement