styles.css 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112
  1. :root {
  2. --lightcolor: #efefef;
  3. --green-900: #22543d;
  4. }
  5. html {
  6. scroll-behavior: smooth;
  7. }
  8. body {
  9. background-color: #272727;
  10. background-image: url(/images/background.png);
  11. background-repeat: no-repeat;
  12. background-size: cover;
  13. font-family: 'Jost', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  14. }
  15. a {
  16. transition: all 0.2s ease;
  17. }
  18. .layoutfooter, .layoutfooter a {
  19. color: #fff;
  20. }
  21. .cbsitehover {
  22. height: 100%;
  23. width: 100%;
  24. transition: all 0.5s ease;
  25. }
  26. .cbsitehover2 {
  27. overflow: hidden;
  28. }
  29. .cbsitehover:hover {
  30. transform: scale(1.15);
  31. }
  32. .ccdiscordjoin {
  33. display: inline-block;
  34. position: relative;
  35. transition: 0.5s;
  36. }
  37. .ccdiscordjoin:after {
  38. content: '\25B8';
  39. position: absolute;
  40. opacity: 0;
  41. top: 0;
  42. right: -20px;
  43. transition: 0.5s;
  44. }
  45. button.ccdiscordjoinpre:hover span {
  46. padding-right: 20px;
  47. }
  48. button.ccdiscordjoinpre:hover .ccdiscordjoin:after {
  49. opacity: 1;
  50. right: 0;
  51. }
  52. .ccinfoframe {
  53. width: 100%;
  54. height: 80vh;
  55. min-height: 600px;
  56. max-height: 900px;
  57. }
  58. .ccmorecells {
  59. height: 200px;
  60. }
  61. @media screen and (min-width: 1024px) {
  62. .ccinfoframe {
  63. width: 500px;
  64. height: 80vh;
  65. min-height:600px;
  66. max-height: 900px;
  67. }
  68. .ccmorecells {
  69. height: 400px;
  70. }
  71. }
  72. #snackbar {
  73. visibility: hidden;
  74. min-width: 8em;
  75. margin-left: -4em;
  76. text-align: center;
  77. position: fixed;
  78. z-index: 30;
  79. left: 50%;
  80. bottom: 30px;
  81. }
  82. #snackbar.show {
  83. visibility: visible;
  84. -webkit-animation: fadein 0.5s, fadeout 0.5s 2s;
  85. animation: fadein 0.5s, fadeout 0.5s 2s;
  86. }
  87. @-webkit-keyframes fadein {
  88. from {bottom: 0; opacity: 0;}
  89. to {bottom: 30px; opacity: 1;}
  90. }
  91. @keyframes fadein {
  92. from {bottom: 0; opacity: 0;}
  93. to {bottom: 30px; opacity: 1;}
  94. }
  95. @-webkit-keyframes fadeout {
  96. from {bottom: 30px; opacity: 1;}
  97. to {bottom: 0; opacity: 0;}
  98. }
  99. @keyframes fadeout {
  100. from {bottom: 30px; opacity: 1;}
  101. to {bottom: 0; opacity: 0;}
  102. }