style.css.orig 772 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. /* Startpage Css
  2. By Dylan Araps */
  3. html,
  4. body,
  5. ul {
  6. margin: 0;
  7. padding: 0;
  8. }
  9. body {
  10. background: #061E26;
  11. height: 100%;
  12. width: 100%;
  13. }
  14. main {
  15. display: block;
  16. font-family: 'Noto Sans';
  17. left: 50%;
  18. position: absolute;
  19. top: 45%;
  20. transform: translate(-50%, -50%);
  21. width: 100%;
  22. }
  23. h1 {
  24. color: #5C5D5B;
  25. display: block;
  26. margin: 0 auto;
  27. text-align: left;
  28. width: 400px;
  29. }
  30. hr {
  31. border: 0;
  32. border-top: 1px solid #658389;
  33. opacity: .4;
  34. width: 400px;
  35. }
  36. ul {
  37. display: block;
  38. margin: 0 auto;
  39. width: 400px;
  40. }
  41. li {
  42. color: #C99664;
  43. display: inline-block;
  44. font-size: 1.2em;
  45. line-height: 1.5;
  46. list-style: none;
  47. margin: 5px;
  48. }
  49. a {
  50. color: #C97549;
  51. text-decoration: none;
  52. transition: .2s;
  53. }
  54. a:hover {
  55. color: #666666;
  56. }