Advertisement
Guest User

Untitled

a guest
Oct 18th, 2019
144
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 1.09 KB | None | 0 0
  1. * {
  2.     margin: 0;
  3.     padding: 0;
  4.     border: none;
  5.     outline: none;
  6. }
  7.  
  8. :root {
  9.     --font: "Roboto", sans-serif;
  10. }
  11.  
  12. html, body {
  13.     height: 100%;
  14.     background-color: #FCFCFC;
  15.     font-family: var(--font);
  16. }
  17.  
  18. #app {
  19.     min-height: 100%;
  20.     display: flex;
  21.     flex-direction: column;
  22. }
  23.  
  24. .left { float: left; }
  25. .right { float: right; }
  26.  
  27. #nav {
  28.     height: 5em;
  29.     background-color: #FCFCFC;
  30.     line-height: 5em;
  31.     -moz-user-select: none;
  32.     -ms-user-select: none;
  33.     user-select: none;
  34. }
  35.  
  36. #nav ul {
  37.     display: block;
  38. }
  39.  
  40. #nav ul li {
  41.     list-style-type: none;
  42.     float: left;
  43.     padding: 0 .7em;
  44.     font-size: .9em;
  45.     font-weight: 500;
  46. }
  47.  
  48. #nav ul li a {
  49.     text-decoration: none;
  50.     color: #545454;
  51. }
  52.  
  53. #nav ul li .btn {
  54.     padding: .5em 1.4em;
  55.     border-radius: 16px;
  56.     cursor: pointer;
  57.     font-family: var(--font);
  58.     font-weight: 500;
  59. }
  60.  
  61. #nav ul li .btn.login {
  62.     background: none;
  63.     color: #545454;
  64.     box-shadow: inset 0 0 0 1px #545454;
  65. }
  66.  
  67. #nav ul li .btn.register {
  68.     background: #0076f5;
  69.     color: #fcfcfc;
  70.     margin-right: 2em;
  71. }
  72.  
  73. #footer {
  74.     height: 8em;
  75.     margin-top: auto;
  76.     background-color: #f5f5f5;
  77. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement