style.css 818 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. html,
  2. body,
  3. ul {
  4. margin: 0;
  5. padding: 0;
  6. }
  7. body {
  8. background: #100410;
  9. height: 100%;
  10. width: 100%;
  11. }
  12. main {
  13. display: block;
  14. font-family: 'Noto Sans';
  15. left: 50%;
  16. position: absolute;
  17. top: 45%;
  18. transform: translate(-50%,-50%);
  19. width: 100%;
  20. }
  21. h1 {
  22. color: #a43261;
  23. display: block;
  24. margin: 0 auto;
  25. text-align: left;
  26. width: 400px;
  27. }
  28. hr {
  29. border: 0;
  30. /*
  31. border-top: 2px solid #a43261;
  32. */
  33. opacity: .4;
  34. width: 400px;
  35. }
  36. ul {
  37. display: block;
  38. margin: 0 auto;
  39. width: 400px;
  40. }
  41. li {
  42. color: #467874;
  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: #7c5d7a;
  51. text-decoration: none;
  52. transition: .2s;
  53. &:hover {
  54. color: #a43261;
  55. }
  56. }