Advertisement
Guest User

Untitled

a guest
Apr 18th, 2014
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.38 KB | None | 0 0
  1. <div class="dashboard">
  2. <div class="row1">
  3. <div class="box1">"w:25%; h:20%;</div>
  4. <div class="box2">w:25%; h:20%;</div>
  5. <div class="box3">w:25%; h:20%;</div>
  6. <div class="box4">w:25%; h:20%;</div>
  7. </div>
  8. <div class="row2">
  9. <div class="box5">"w:45%; h:20%;</div>
  10. <div class="box8">"w:45%; h:30%;</div>
  11. <div class="box6">"w:40%; h:50%;</div>
  12. <div class="box9">w:85%; h:12.5%;</div>
  13. <div class="box10">w:85%; h:17.5%;</div>
  14. <div class="box7">w:15%; h:70%;</div>
  15. <div class="box11">"w:15%; h:10%;</div>
  16. </div>
  17. </div>
  18.  
  19. html,body,.dashboard{
  20. width:100%;
  21. height:100%;
  22. margin:0;
  23. }
  24.  
  25. .col1{
  26. width:100%;
  27. height:20%;
  28. }
  29. .col1 > div{
  30. width:25%;
  31. height:100%;
  32. float:left;
  33. }
  34. .col2{
  35. width: 85%;
  36. height:80%;
  37. float:left;
  38. }
  39. .col2 > div{
  40. float:left;
  41. }
  42. .col2 .box6{
  43. float:right;
  44. width: 45%;
  45. height:70%;
  46. }
  47. .box5,.box8{
  48. width:55%;
  49. }
  50. .box5{
  51. height:30%;
  52. }
  53. .box8{
  54. height:40%;
  55. }
  56. .box9{
  57. height:12%;
  58. width:100%;
  59. }
  60. .box10{
  61. height:18%;
  62. width:100%;
  63. }
  64. .box7,.box11{
  65. width:15%;
  66.  
  67. }
  68. .box7{
  69. height:70%;
  70. width:15%;
  71. float:left;
  72. }
  73. .box11{
  74. height:10%;
  75. width:15%;
  76. float:left;
  77. }
  78.  
  79. .border {
  80. background-color: white;
  81. box-sizing:border-box;
  82. -moz-box-sizing:border-box;
  83. -webkit-box-sizing:border-box;
  84. border:1px solid #000;
  85. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement