Guest User

Untitled

a guest
Nov 23rd, 2017
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.92 KB | None | 0 0
  1. <header>header</header>
  2. <section>
  3. <aside>aside long content...</aside>
  4. <main>main long content...</main>
  5. <aside>aside long content...</aside>
  6. </section>
  7. <footer>footer</footer>
  8.  
  9. body {
  10. margin: 0;
  11. height: 100vh;
  12. display: flex;
  13. flex-direction: column;
  14. }
  15.  
  16. header, footer {
  17. height: 50px;
  18. min-height: 50px;
  19. background: black;
  20. color: #fff;
  21. }
  22.  
  23. section {
  24. flex-grow: 1;
  25. display: flex;
  26. }
  27.  
  28. section aside {
  29. width: 100px;
  30. background: #ccc;
  31. height:100%;
  32. overflow:scroll;
  33. }
  34.  
  35. section main {
  36. overflow:scroll;
  37. flex-grow: 1;
  38. }
  39.  
  40. body {
  41. margin: 0;
  42. height: 100vh;
  43. display: flex;
  44. flex-direction: column;
  45. }
  46.  
  47. header, footer {
  48. height: 50px;
  49. min-height: 50px;
  50. background: black;
  51. color: #fff;
  52. transition-property: height;
  53. transition-duration: 0.2s;
  54. transition-timing-function: linear;
  55. }
  56.  
  57. section {
  58. flex-grow: 1;
  59. display: flex;
  60. height:0px; /* <== for scrolls in aside */
  61. }
  62.  
  63. aside {
  64. width: 100px;
  65. background: #ccc;
  66. overflow:auto;
  67. min-height: 0;
  68. transition-property: width;
  69. transition-duration: 0.2s;
  70. transition-timing-function: linear;
  71. }
  72.  
  73. section main {
  74. overflow:auto;
  75. flex-grow: 1;
  76.  
  77. }
  78. footer:hover
  79. {
  80. height:200px;
  81. }
  82. aside:hover
  83. {
  84. width:200px;
  85. }
  86.  
  87. <header>header</header>
  88. <section>
  89. <aside><p>main long content...</p><p>main long content...</p><p>main long content...</p><p>main long content...</p><p>main long content...</p><p>main long content...</p><p>main long content...</p><p>main long content...</p><p>main long content...</p><p>main long content...</p></aside>
  90. <main>main long content...</main>
  91. <aside><p>main long content...</p><p>main long content...</p><p>main long content...</p><p>main long content...</p><p>main long content...</p><p>main long content...</p><p>main long content...</p><p>main long content...</p><p>main long content...</p><p>main long content...</p><p>main long content...</p><p>main long content...</p></aside>
  92. </section>
  93. <footer>footer</footer>
Add Comment
Please, Sign In to add comment