LunamareStartium.min.css 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150
  1. @charset "UTF-8";
  2. /*
  3. sass LunamareStartium.scss LunamareStartium.min.css
  4. */
  5. .invisible {
  6. opacity: 0 !important;
  7. }
  8. /* Color Scheme */
  9. html {
  10. height: 100%;
  11. width: 100%;
  12. }
  13. html body {
  14. display: flex;
  15. justify-content: center;
  16. align-items: center;
  17. height: 100%;
  18. width: 100%;
  19. background-color: #000214;
  20. }
  21. html body #main {
  22. display: inline-flex;
  23. width: 900px;
  24. height: 900px;
  25. position: relative;
  26. /* mark as anchor for absolute children */
  27. /*background-color: green; /* transparent once done debugging */
  28. }
  29. #main #album-cover {
  30. pointer-events: none;
  31. background-image: url("./albumcover-1.png");
  32. background-position: center;
  33. background-size: cover;
  34. background-color: #8637c7;
  35. border-radius: 5px;
  36. height: 100%;
  37. width: 100%;
  38. position: absolute;
  39. top: 0px;
  40. left: 0px;
  41. z-index: 2;
  42. -webkit-transition: transform 300ms;
  43. -moz-transition: transform 300ms;
  44. -o-transition: transform 300ms;
  45. -webkit-transition-timing-function: ease-in;
  46. -moz-transition-timing-function: ease-in;
  47. -o-transition-timing-function: ease-in;
  48. -webkit-transform-origin: center left;
  49. -moz-transform-origin: center left;
  50. -o-transform-origin: center left;
  51. }
  52. #main:hover #album-cover {
  53. transition: opacity 0.6s;
  54. opacity: 0;
  55. }
  56. #table-of-contents {
  57. display: flex;
  58. flex-direction: column;
  59. justify-content: center;
  60. align-items: center;
  61. height: 100%;
  62. width: 100%;
  63. z-index: 1;
  64. }
  65. #table-of-contents #priority {
  66. height: 100%;
  67. width: 230px;
  68. position: absolute;
  69. top: 0px;
  70. right: -50px;
  71. z-index: 1;
  72. }
  73. #table-of-contents #priority > div {
  74. display: inline-block;
  75. height: 200px;
  76. width: 200px;
  77. margin: 15px;
  78. padding: 15px;
  79. background-color: #242a6d;
  80. border-radius: 5px;
  81. -webkit-transform: rotate(90deg);
  82. -moz-transform: rotate(90deg);
  83. -o-transform: rotate(90deg);
  84. -webkit-transform-origin: center center;
  85. -moz-transform-origin: center center;
  86. -o-transform-origin: center center;
  87. }
  88. #table-of-contents #priority > div header {
  89. color: #ff618f;
  90. font-family: Impact, Charcoal, sans-serif;
  91. font-size: 17pt;
  92. -webkit-transform: scale(1.3, 1);
  93. -moz-transform: scale(1.3, 1);
  94. -o-transform: scale(1.3, 1);
  95. text-align: center;
  96. }
  97. #table-of-contents #misc {
  98. align-self: flex-end;
  99. height: 100%;
  100. width: 870px;
  101. position: relative;
  102. background-color: #fba2c2;
  103. z-index: 2;
  104. border-radius: 5px;
  105. padding: 15px;
  106. }
  107. #table-of-contents .group {
  108. /*background-color: gray;*/
  109. }
  110. #table-of-contents .group header {
  111. text-align: center;
  112. font-size: 17pt;
  113. font-family: "Comic Sans MS", cursive, sans-serif;
  114. font-weight: 600;
  115. color: #462ea7;
  116. }
  117. #table-of-contents .group ul {
  118. text-align: center;
  119. columns: 2;
  120. -webkit-columns: 2;
  121. -moz-columns: 2;
  122. list-style: none;
  123. margin-top: 4px;
  124. }
  125. #table-of-contents .group ul li {
  126. font-size: 12pt;
  127. font-family: "Comic Sans MS", cursive, sans-serif;
  128. color: #ff2a5e;
  129. text-decoration: underline;
  130. text-decoration-color: #b98afd;
  131. }
  132. #table-of-contents .group ul li::before {
  133. content: "•";
  134. /* \2022 is the CSS Code/unicode for a bullet */
  135. color: #b98afd;
  136. font-weight: bold;
  137. /* If you want it to be bold */
  138. display: inline-block;
  139. /* Needed to add space between the bullet and the text */
  140. width: 1em;
  141. /* Also needed for space (tweak if needed) */
  142. margin-left: -1em;
  143. /* Also needed for space (tweak if needed) */
  144. }
  145. /*# sourceMappingURL=LunamareStartium.min.css.map */