style.css 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147
  1. @font-face {
  2. font-family: rubik;
  3. src: url(rubik.ttf);
  4. }
  5. @font-face {
  6. font-family: rubikbold;
  7. src: url(rubikbold.ttf);
  8. }
  9. body, html {
  10. padding: 0; margin: 0;
  11. font-family: rubik;
  12. color: #efefef;
  13. }
  14. div.bodyWrapper {
  15. width: 75%;
  16. margin: auto;
  17. }
  18. div.bodyWrapper > div.siteHeader {
  19. height: 200px;
  20. font-size: 80px;
  21. font-weight: 100;
  22. line-height: 160px;
  23. text-align: center;
  24. font-family: rubikbold;
  25. color: #523c7b;
  26. }
  27. div.bodyWrapper > div.siteMain {
  28. background: #efefef;
  29. color: #3a3a3a;
  30. padding: 20px 30px;
  31. }
  32. div.backgroundCover {
  33. width: 100vw;
  34. height: 100vh;
  35. position: fixed;
  36. background: url('background.png') no-repeat fixed center;
  37. background-size: cover;
  38. filter: blur(8px);
  39. }
  40. body {
  41. background: #523c7b;
  42. }
  43. div.bodyWrapper {
  44. z-index: 99;
  45. position: relative;
  46. }
  47. div.siteHeaderWordmark {
  48. text-shadow:
  49. -1px -1px 0 #d7caf8,
  50. 1px -1px 0 #d7caf8,
  51. -1px 1px 0 #d7caf8,
  52. 1px 1px 0 #d7caf8;
  53. }
  54. a.button {
  55. background: #523c7b;
  56. text-decoration: none;
  57. padding: 10px 15px;
  58. color: #efefef;
  59. }
  60. .footer {
  61. color: #686868;
  62. }
  63. div.userinfo {
  64. background: #36393f;
  65. color: rgb(220, 221, 222);
  66. overflow: hidden;
  67. padding: 20px;
  68. border-radius: 70px;
  69. }
  70. div.userinfo img {
  71. float: left;
  72. border-radius: 50%;
  73. width: 90px;
  74. margin-right: 30px;
  75. }
  76. div.userinfo p.username {
  77. font-size: 110%;
  78. font-weight: bold;
  79. }
  80. div.userinfo span.discriminator {
  81. color: #a6a7a4;
  82. }
  83. .inputfile {
  84. width: 0.1px;
  85. height: 0.1px;
  86. opacity: 0;
  87. overflow: hidden;
  88. position: absolute;
  89. z-index: -1;
  90. }
  91. .inputfile + label, input[type=submit] {
  92. background: #523c7b;
  93. text-decoration: none;
  94. padding: 10px 15px;
  95. color: #efefef;
  96. display: inline-block;
  97. cursor: pointer;
  98. border: 0px;
  99. font-size: inherit;
  100. font-family: inherit;
  101. }
  102. div.audiofile {
  103. margin-top: 20px;
  104. border: 5px solid #d7caf8;
  105. padding: 20px 25px;
  106. }
  107. div.audiofile span {
  108. margin-right: 50px;
  109. }
  110. div.uploadform {
  111. position: relative;
  112. }
  113. div.uploadBlackout {
  114. position: absolute;
  115. width: 100%;
  116. background:rgba(239,239,239,0.7);
  117. z-index: 1000;
  118. height: 100%;
  119. overflow: hidden;
  120. text-align: center;
  121. }
  122. div.uploadBlackout > img {
  123. width: 65px;
  124. margin-top: 10px;
  125. }