Advertisement
Guest User

Untitled

a guest
May 22nd, 2018
58
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 1.47 KB | None | 0 0
  1. /* HTML */
  2. <body>
  3.     <div class="container">
  4.         <header class="main-header">
  5.             header
  6.         </header>
  7.  
  8.         <aside class="contacts hide-for-mobile">
  9.             contacts
  10.         </aside>
  11.        
  12.         <div class="chat">
  13.             chat
  14.         </div>
  15.  
  16.         <aside class="features hide-for-tablet hide-for-mobile">
  17.             features
  18.         </aside>
  19.     </div>
  20. </body>
  21.  
  22. /* CSS */
  23. /* WHOLE PAGE */
  24. html, body {
  25.     height: 100%;
  26.   }
  27. body {
  28.     font: 15px Arial, Helvetica, sans-serif;
  29.     padding: 0;
  30.     margin: 0;
  31.     background-color: #f4f4f4;
  32. }
  33. * {
  34.     box-sizing: border-box;
  35. }
  36. .container {
  37.     height: 100%;
  38.     border: 2px solid green;
  39. }
  40. .contacts, .chat, .features {
  41.     height: calc(100% - 75px);
  42.     float: left;
  43.     border: 2px solid green;
  44.     border-bottom: none;
  45.     border-left: none;
  46. }
  47. /* HEADER   */  
  48. header {
  49.     height: 75px;
  50. }
  51. .main-header {
  52.     width: 100%;
  53. }
  54. /* CONTACTS */
  55. .contacts {
  56.     width: 25%;
  57. }
  58. /* CHAT     */
  59. .chat {
  60.     width: 50%;
  61. }
  62. /* FEATURES */
  63. .features {
  64.     width: 25%;
  65.     border-right: none;
  66. }
  67. /* MEDIA QUERIES */
  68. @media only screen and (max-width: 600px) {
  69.     .chat {
  70.         width: 100%;
  71.     }
  72.     .hide-for-mobile {
  73.         display: none;
  74.     }
  75. }
  76. @media only screen and (max-width: 992px) {
  77.     .contacts {
  78.         width: 33%;
  79.     }
  80.     .chat {
  81.         width: 77%;
  82.     }
  83.     .hide-for-mobile {
  84.         display: none;
  85.     }
  86.     .hide-for-tablet {
  87.         display: none;
  88.     }
  89. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement