style.styl 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200
  1. global-reset()
  2. @import "bootstrap.css"
  3. @import "fontawesome.css"
  4. text_color = white;
  5. alt_color = #a2a2a2
  6. body {
  7. }
  8. p {
  9. margin-top: 0;
  10. margin-bottom: 1.4rem;
  11. }
  12. .content-area {
  13. width: 100%;
  14. height: 30%;
  15. min-height: 280px;
  16. }
  17. .center {
  18. display: flex;
  19. justify-content: center;
  20. align-items: center;
  21. }
  22. .logo {
  23. width: 25%;
  24. }
  25. .hidden {
  26. display: none;
  27. }
  28. .container {
  29. max-width: 720px;
  30. }
  31. .container.container-large {
  32. max-width: 100%;
  33. }
  34. .container-fluid.content {
  35. padding-left: 10%;
  36. padding-right: 10%;
  37. }
  38. .card {
  39. background-color: #191919;
  40. border: 0px solid
  41. border-radius: 0px;
  42. color: alt_color;
  43. min-height: 170px;
  44. padding: 1px;
  45. }
  46. .card:hover {
  47. border: 1px solid
  48. padding: 0px;
  49. }
  50. .card-date {
  51. position: relative;
  52. bottom: 10px;
  53. margin-top: 0px;
  54. margin-bottom: 0px;
  55. padding-left: 1em;
  56. padding-right: 1em;
  57. }
  58. a { color: alt_color; }
  59. a:hover { color: text_color; }
  60. .group-header {
  61. margin-top: 150px;
  62. padding-bottom: 25px;
  63. text-align: center;
  64. color: text_color;
  65. //text-transform: uppercase;
  66. font-size: 1.8em;
  67. font-weight: 200;
  68. }
  69. .lead { color: alt_color; }
  70. .lead a {
  71. color: alt_color;
  72. text-decoration: underline;
  73. }
  74. .lead a:hover {
  75. color: text_color;
  76. text-decoration: underline;
  77. }
  78. .discord-color {
  79. background-color: #7289DA;
  80. color: text_color;
  81. }
  82. .post-content img {
  83. width: 100%;
  84. }
  85. .post-content h2 {
  86. margin-bottom: 26px;
  87. text-align: center;
  88. //text-transform: uppercase;
  89. font-size: 1.8em;
  90. font-weight: 200;
  91. }
  92. .presskit h2 {
  93. text-align: center;
  94. //text-transform: uppercase;
  95. font-weight: 200;
  96. font-size: 2.5em;
  97. }
  98. .presskit a:hover {
  99. color: black;
  100. }
  101. .presskit .presskit-content h2 {
  102. margin-top: 80px;
  103. margin-bottom: 40px;
  104. }
  105. .presskit p {
  106. margin-bottom: 25px;
  107. }
  108. .bg-dark2 {
  109. background-color: rgb(16, 16, 16);
  110. color: alt_color;
  111. }
  112. .bg-darker {
  113. background-color: #191919
  114. color: alt_color;
  115. }
  116. .space-bottom {
  117. margin-bottom: 30px;
  118. }
  119. .spacer-top {
  120. margin-top: 100px;
  121. }
  122. .spacer-bottom {
  123. margin-bottom: 100px;
  124. }
  125. .cover-bg {
  126. min-height: 300px;
  127. object-fit: cover;
  128. }
  129. ul {
  130. text-align: center;
  131. padding-left: 0px;
  132. margin-left: 0px;
  133. }
  134. li {
  135. display: inline-block;
  136. padding-bottom: 12px;
  137. }
  138. .ratio-steam iframe {
  139. height: 200px;
  140. width: 100%;
  141. }
  142. .btn-steam img {
  143. margin-top: 30px;
  144. width: 230px;
  145. }
  146. .btn-steam:hover img {
  147. width: 240px;
  148. margin-top: 27px;
  149. }
  150. .social-link {
  151. margin-right: 10px;
  152. }
  153. .ratio>* {
  154. position: absolute;
  155. top: 0;
  156. left: 0;
  157. width: 100%;
  158. height: 100%;
  159. }