Advertisement
Guest User

Untitled

a guest
Aug 21st, 2019
104
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 1.07 KB | None | 0 0
  1.  
  2. * {
  3.   box-sizing: border-box;
  4. }
  5.  
  6.  
  7. /* Style the header */
  8. header {
  9.   background-color: #666;
  10.   padding: 5px;
  11.   text-align: center;
  12.   font-size: 16px;
  13.   color: white;
  14. }
  15.  
  16. /* Create two columns/boxes that floats next to each other */
  17. nav {
  18.   float: left;
  19.   width: 20%;
  20.   height: 90vh;
  21.   background: #ccc;
  22.   padding: 20px;
  23. }
  24.  
  25. /* Style the list inside the menu */
  26. nav ul {
  27.   list-style-type: none;
  28.   padding: 0;
  29.  
  30. }
  31. nav ul li a{
  32.   text-decoration: none;
  33.  
  34.  
  35. }
  36.  
  37. article {
  38.   float: left;
  39.   padding: 10px;
  40.   width: 80%;
  41.   background-color: #f1f1f1;
  42.   height: 90vh;
  43. }
  44.  
  45. /* Clear floats after the columns */
  46. section:after {
  47.   content: "";
  48.   display: table;
  49.   clear: both;
  50. }
  51.  
  52. /* Style the footer */
  53. footer {
  54.   background-color: #777;
  55.   padding: 10px;
  56.   text-align: center;
  57.   color: white;
  58. }
  59. input[type=text] {
  60.   width: 50%;
  61.   padding: 5px ;
  62.  
  63.   display: inline-block;
  64.   border: 1px solid #ccc;
  65.   border-radius: 4px;
  66.   box-sizing: border-box;
  67. }
  68.  
  69. @media (max-width: 600px) {
  70.   nav, article {
  71.     width: 100%;
  72.     height: auto;
  73.   }
  74. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement