Facebook
From Harmless Penguin, 5 Years ago, written in Plain Text.
Embed
Download Paste or View Raw
Hits: 179
  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: 10%;
  19.     width: 100%;
  20.     float: left;
  21. }
  22. nav li:first-child {
  23.     text-align: left;
  24. }
  25.  
  26. ul,
  27. ul li {
  28.     display: block;
  29.     list-style: none;
  30.     margin: 0;
  31.     padding: 0;
  32.     text-align: right;
  33. }
  34.  
  35. ul li {
  36.     display: inline-block;
  37.     vertical-align: middle;
  38.     white-space: nowrap;
  39. }
  40.  
  41. li a {
  42.     padding: 5px;
  43.     text-decoration: none;
  44.     color: #696969;
  45.     font-size: 20px;
  46.     font-weight: bold;
  47.     vertical-align: middle;
  48. }
  49.  
  50. a:hover {
  51.     background-color: #F0E68C;
  52. }
  53.  
  54. #samolot {
  55.     float: left;
  56.     height: 100px;
  57.     width: 150px;
  58.     padding: 15px 0px 0px 15px;
  59. }