Facebook
From Sweltering Finch, 5 Years ago, written in Plain Text.
Embed
Download Paste or View Raw
Hits: 160
  1. html,
  2. body {
  3.     height: 100%;
  4.     width: 100%;
  5.     position: relative;
  6.     margin: 0px auto;
  7.     padding: 0px 0px 0px 0px;
  8.     background-color: whitesmoke;
  9.     font-family: 'Roboto', sans-serif;
  10. }
  11.  
  12. article {
  13.     height: 100%;
  14.     width: 100%;
  15. }
  16.  
  17. nav {
  18.     height: 100%;
  19.     width: 100%;
  20.     display: flex;
  21.     justify-content: space-between;
  22. }
  23.  
  24. ul,
  25. ul li {
  26.     list-style: none;
  27.     margin: 0;
  28.     padding: 0;
  29.     text-align: right;
  30. }
  31. ul li {
  32.     display: inline-block;
  33.     vertical-align: middle;
  34.     white-space: nowrap;
  35. }
  36.  
  37. li a {
  38.     padding: 5px;
  39.     text-decoration: none;
  40.     color: #696969;
  41.     font-size: 20px;
  42.     font-weight: bold;
  43.     vertical-align: middle;
  44. }
  45.  
  46. a:hover {
  47.     background-color: #F0E68C;
  48. }
  49.  
  50. #samolot {
  51.     height: 100px;
  52.     width: 150px;
  53.     padding: 15px 0px 0px 15px;
  54. }