style.styl 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122
  1. global-reset()
  2. @import "bootstrap.css"
  3. text_color = white;
  4. alt_color = #a2a2a2
  5. body {
  6. background-color: rgb(16, 16, 16);
  7. color: alt_color;
  8. }
  9. .content-area {
  10. width: 100%;
  11. height: 30%;
  12. min-height: 280px;
  13. }
  14. .center {
  15. display: flex;
  16. justify-content: center;
  17. align-items: center;
  18. }
  19. .logo {
  20. width: 25%;
  21. }
  22. .hidden {
  23. display: none;
  24. }
  25. .container {
  26. max-width: 720px;
  27. }
  28. .card {
  29. background-color: #191919;
  30. border: 0px solid
  31. border-radius: 0px;
  32. color: alt_color;
  33. min-height: 150px;
  34. padding: 1px;
  35. }
  36. .card:hover {
  37. border: 1px solid
  38. padding: 0px;
  39. }
  40. a { color: alt_color; }
  41. a:hover { color: text_color; }
  42. .group-header {
  43. margin-top: 150px;
  44. padding-bottom: 25px;
  45. text-align: center;
  46. color: text_color;
  47. //text-transform: uppercase;
  48. font-size: 1.8em;
  49. font-weight: 200;
  50. }
  51. .lead { color: alt_color; }
  52. .lead a {
  53. color: alt_color;
  54. text-decoration: underline;
  55. }
  56. .lead a:hover {
  57. color: text_color;
  58. text-decoration: underline;
  59. }
  60. .bg-darker {
  61. background-color: #111111;
  62. }
  63. .space-bottom {
  64. margin-bottom: 30px;
  65. }
  66. .spacer-top {
  67. margin-top: 100px;
  68. }
  69. .spacer-bottom {
  70. margin-bottom: 100px;
  71. }
  72. .cover-bg {
  73. min-height: 300px;
  74. object-fit: cover;
  75. }
  76. ul {
  77. text-align: center;
  78. padding-left: 0px;
  79. margin-left: 0px;
  80. }
  81. li {
  82. display: inline-block;
  83. padding-bottom: 12px;
  84. }
  85. .ratio-steam {
  86. --aspect-ratio: 35%;
  87. }
  88. .btn-steam img {
  89. margin-top: 30px;
  90. width: 230px;
  91. }
  92. .btn-steam:hover img {
  93. width: 240px;
  94. margin-top: 27px;
  95. }