style-ps.css 745 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. html {
  2. box-sizing: border-box;
  3. font-size: 16px;
  4. }
  5. *, *:before, *:after {
  6. box-sizing: inherit;
  7. }
  8. body, h1, h2, h3, h4, h5, h6, p, ol, ul {
  9. margin: 0;
  10. padding: 0;
  11. font-weight: normal;
  12. }
  13. ol, ul {
  14. list-style: none;
  15. }
  16. img {
  17. max-width: 100%;
  18. height: auto;
  19. }
  20. #footer {
  21. font-family: 'Roboto Condensed', sans-serif;
  22. position: fixed;
  23. bottom: 0px;
  24. background-color: white;
  25. padding: 5px;
  26. width: 100%;
  27. text-align: center;
  28. }
  29. .centered {
  30. display: block;
  31. margin-left: auto;
  32. margin-right: auto;
  33. }
  34. ul > li {
  35. display: inline-block;
  36. /* You can also add some margins here to make it look prettier */
  37. zoom:1;
  38. *display:inline;
  39. padding-left: 5px;
  40. padding-right: 5px;
  41. text-align: center;
  42. }