Du kannst nicht mehr als 25 Themen auswählen Themen müssen mit entweder einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

extra.css 1.9KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  1. .md-button {
  2. border-radius: 100px !important;
  3. }
  4. img.responsive {
  5. width: 100%;
  6. height: auto;
  7. }
  8. .transparent-grid {
  9. display: inline-block;
  10. background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgAQMAAABJtOi3AAAABlBMVEWZmZlmZmZYfKrVAAAAE0lEQVQI12P4/5+BgZoEA3VNBADtvT/BrQ+bEwAAAABJRU5ErkJggg==);
  11. background-repeat: repeat;
  12. }
  13. .md-typeset video {
  14. height: auto;
  15. max-width: 100%;
  16. }
  17. @keyframes heart {
  18. 0%, 40%, 80%, 100% {
  19. transform: scale(1);
  20. }
  21. 20%, 60% {
  22. transform: scale(1.15);
  23. }
  24. }
  25. .heart {
  26. animation: heart 1000ms infinite;
  27. }
  28. #support-widget {
  29. position: fixed;
  30. bottom: 80px;
  31. right: 16px;
  32. padding: 0 12px;
  33. width: 300px;
  34. font-size: 0.8rem;
  35. color: var(--md-default-fg-color);
  36. background-color: var(--md-primary-bg-color);
  37. border-color: var(--md-primary-fg-color);
  38. border-width: 2px;
  39. border-style: solid;
  40. border-radius: 16px;
  41. transform: scaleY(1);
  42. transform-origin: bottom;
  43. transition: transform 0.25s ease;
  44. z-index: 1000;
  45. }
  46. #support-widget.invisible {
  47. transform: scaleY(0);
  48. }
  49. #support-button {
  50. position: fixed;
  51. right: 16px;
  52. bottom: 16px;
  53. padding: 12px;
  54. color: var(--md-primary-fg-color);
  55. background-color: var(--md-primary-bg-color);
  56. font-weight: bold;
  57. font-size: 0.8rem;
  58. font-family: sans-serif;
  59. cursor: pointer;
  60. border-width: 2px;
  61. border-style: solid;
  62. border-color: var(--md-primary-fg-color);
  63. border-radius: 32px;
  64. transition: color 125ms, background-color 125ms, border-color 125ms;
  65. z-index: 1000;
  66. }
  67. #support-button:hover {
  68. color: var(--md-accent-bg-color);
  69. border-color: var(--md-accent-fg-color);
  70. background-color: var(--md-accent-fg-color);
  71. }
  72. #announcement a {
  73. font-weight: bold;
  74. }
  75. #announcement a, #announcement a:visited {
  76. color: white;
  77. }
  78. #announcement a:hover, #announcement a:active {
  79. color: #ffee11;
  80. }