Advertisement
Guest User

Untitled

a guest
Mar 14th, 2014
275
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 1.12 KB | None | 0 0
  1. #container {
  2.     width: 900px;
  3.     min-height: 500px;
  4.     margin: auto;
  5.     background: #DDDDDD;
  6. }
  7.  
  8. .index {
  9.    
  10.  
  11.     .entry {
  12.         border-top: 1px solid black;
  13.         border-bottom: 1px solid black;
  14.     }
  15. }
  16.  
  17. .title {
  18.         text-align: center;
  19.     }
  20.  
  21. .name {
  22.     padding: 0px 10px;
  23. }
  24.  
  25. .tag {
  26.     display: inline-block;
  27. }
  28.  
  29. .link {
  30.         border: 1px solid black;
  31.         display: inline-block;
  32.         padding: 10px;
  33.         text-decoration: none;
  34. }
  35.  
  36. .info {
  37.     width: 610px;
  38.     margin: auto;
  39.  
  40.     .input-text_area {
  41.         width: 300px;
  42.         height: 250px;
  43.         padding: 0;
  44.         border: none;
  45.         resize: none;
  46.     }
  47.  
  48.     .input-text_field {
  49.         width: 300px;
  50.         padding: 0;
  51.         margin: 0;
  52.         border: none;
  53.     }
  54.  
  55.     .input-button {
  56.         width: 75px;
  57.         height: 50px;
  58.         margin: 2px 0px;
  59.         display: block;
  60.         float: right;
  61.     }
  62.  
  63.     select {
  64.         float: right;
  65.         margin: 0px;
  66.     }
  67.  
  68.     .right_half {
  69.         float: left;
  70.         padding: 1px;
  71.         height: 300px;
  72.         width: 300px;
  73.     }
  74.  
  75.     .left_half {
  76.         float: left;
  77.         padding: 1px;
  78.         height: 300px;
  79.     }
  80.  
  81.     .tags {
  82.         height: 200px;
  83.  
  84.         label {
  85.             display: block;
  86.         }
  87.  
  88.         .text_field {
  89.             width: auto;
  90.         }
  91.     }
  92.  
  93.     .block-label {
  94.         display: block;
  95.     }
  96. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement