Advertisement
Guest User

Untitled

a guest
Apr 16th, 2014
40
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.03 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="utf-8">
  5. <title>Basic</title>
  6. </head>
  7. <body>
  8. <div id="milestone">
  9. <div id="milestonecontent">
  10. <div id="event">
  11. </div>
  12. </div>
  13. <div class="actions">
  14. </div>
  15. </div>
  16. </body>
  17. </html>
  18.  
  19. #body{
  20. background-color: #e9eaed;
  21. }
  22.  
  23. #milestone{
  24. width: 512px;
  25. height: 137px;
  26. background-color: blue;
  27.  
  28. }
  29.  
  30. #milestonecontent{
  31. width: 512px;
  32. height: 104px;
  33. background-color: green;
  34. }
  35. #event{
  36. position: relative;
  37. margin: 10px auto;
  38. width: 512px;
  39. height: 58px;
  40. background-color: red;
  41.  
  42. }
  43. .actions{
  44. border-top: 1px solid #e9eaed;
  45. position: relative;
  46. width: 512px;
  47. height: 33px;
  48. background-color: grey;
  49. }
  50.  
  51. #milestonecontent{
  52. width: 512px;
  53. height: 104px;
  54. background-color: green;
  55. overflow: auto;
  56. }
  57.  
  58. #event {
  59. display: inline-block;
  60. margin-top: 23px;
  61. }
  62.  
  63. #milestonecontent{
  64. height: 104px;
  65. padding-top:20px;
  66. background-color: green;
  67. }
  68.  
  69. #event{
  70. margin: 0 auto;
  71. width: 300px;
  72. height: 58px;
  73. background-color: red;
  74. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement