custom.css 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  1. body {
  2. font-size: 1.1em !important;
  3. }
  4. #main-image {
  5. background-size: cover;
  6. background-position: 50% 50%;
  7. width: 100%;
  8. height: 350px;
  9. }
  10. #main-image-container {
  11. padding: 30px 0;
  12. }
  13. #main-image-text {
  14. color: #fff;
  15. text-shadow: 0px 0px 10px black;
  16. }
  17. pre {
  18. padding: 10px 20px;
  19. }
  20. #git-menu-item {
  21. background: rgba(0, 255, 0, 0.1);
  22. }
  23. #git-menu-item:hover {
  24. background: rgba(0, 255, 0, 0.3);
  25. }
  26. #discord-menu-item {
  27. background: rgba(128, 0, 128, 0.3);
  28. }
  29. #discord-menu-item:hover {
  30. background: rgba(128, 0, 128, 0.7);
  31. }
  32. figure {
  33. margin: 10px 0px;
  34. }
  35. #top-shadow {
  36. background-color: #2185d0;
  37. height:5px;
  38. box-shadow: 0px 3px 5px #000;
  39. }
  40. #bottom-shadow {
  41. margin-bottom: -14px;
  42. background-color: #2185d0;
  43. height:5px;
  44. box-shadow: 0px -3px 5px #000;
  45. }
  46. /* Global message */
  47. .global-message {
  48. padding: 5px;
  49. font-size: 0.9em;
  50. }
  51. #global-message-error {
  52. background: #912d2b;
  53. color: #fff6f6;
  54. }
  55. #global-message-warning {
  56. background: #b58105;
  57. color: #fff8db;
  58. }
  59. #global-message-info {
  60. background: #dff0ff;
  61. color: #2185d0;
  62. }