base.css 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. * {
  2. -webkit-box-sizing: border-box;
  3. box-sizing: border-box;
  4. font-family: 'source-sans-pro', Arial, Helvetica, sans-serif;
  5. }
  6. ::-webkit-input-placeholder {
  7. color: rgba(255,255,255,0.30);
  8. }
  9. body {
  10. margin: 0;
  11. padding: 0;
  12. -webkit-user-select: none;
  13. cursor: default;
  14. color: rgb(192,192,192);
  15. background-color: rgb(48,48,48);
  16. font-weight: 400;
  17. letter-spacing: 0.01em;
  18. font-size: 10pt;
  19. }
  20. h1,h2,h3,h4,h5,h6 { margin: 0em; padding: 0em; }
  21. h1 { font-weight: 300; font-size: 4em; }
  22. h2 { font-weight: 300; font-size: 3em; }
  23. h3 { font-weight: 400; font-size: 2em; }
  24. h4 { font-weight: 400; font-size: 1.5em; }
  25. h5 { font-weight: 400; font-size: 1em; }
  26. h6 { font-weight: 600; font-size: 0.8em; }
  27. .titleColor { color: #9356f3; }
  28. .link { color: #b389f5; text-decoration: none; }
  29. .link:hover { color: #d7bdff; }
  30. .text-center { width: 100%; text-align: center; display: block; }
  31. .text-right { width: 100%; text-align: right; display: block; }
  32. p { margin: 1em 0em; }
  33. ul {
  34. list-style: none;
  35. margin: 0;
  36. padding: 0;
  37. }
  38. ul li {
  39. margin: 4px 0;
  40. padding: 0;
  41. }
  42. .alert {
  43. font-size: 18px;
  44. padding: 10px;
  45. background: #000;
  46. }
  47. .alert span {
  48. color: #9356f3;
  49. font-weight: bold;
  50. }