style.css 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  1. .ui.comments .comment .text {
  2. margin: 0 !important;
  3. padding: .25em 0 .5em !important;
  4. }
  5. .hidden {
  6. display: none;
  7. }
  8. /* Sticky Footer */
  9. .site {
  10. display: flex;
  11. flex-direction: column;
  12. height: 100%;
  13. /* 1, 3 */
  14. }
  15. .site-header,
  16. .site-footer {
  17. flex: none;
  18. /* 2 */
  19. }
  20. .site-content {
  21. flex: 1 0 auto;
  22. /* 2 */
  23. padding: var(--space) var(--space) 0;
  24. width: 100%;
  25. }
  26. .site-content::after {
  27. content: "\00a0";
  28. /*   */
  29. display: block;
  30. margin-top: var(--space);
  31. height: 0px;
  32. visibility: hidden;
  33. }
  34. @media (--break-lg) {
  35. .site-content {
  36. padding-top: var(--space-lg);
  37. }
  38. .site-content::after {
  39. margin-top: var(--space-lg);
  40. }
  41. }
  42. .site-content--full {
  43. padding: 0;
  44. }
  45. .site-content--full::after {
  46. content: none;
  47. }
  48. /* END Sticky Footer */
  49. /* TOAST */
  50. #toastList {
  51. position: fixed;
  52. left: 30px;
  53. bottom: 30px;
  54. z-index: 100;
  55. }
  56. /* END TOAST */
  57. /* START Search results customization */
  58. .results {
  59. background-color: black !important;
  60. box-shadow: inset -1px -1px 1px #333 !important;
  61. border: none !important;
  62. }
  63. .ui.search>.results .result {
  64. padding: 10px !important;
  65. }
  66. .ui.search>.results .result .title {
  67. color: white !important;
  68. font-weight: normal !important;
  69. }
  70. .ui.search>.results .result:hover {
  71. background-color: #555 !important;
  72. }
  73. .description {
  74. color: white !important;
  75. }
  76. /* END Search results customization */