style.css 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167
  1. * {
  2. margin: 0;
  3. padding: 0;
  4. cursor: url("../src/pointer.png"), auto;
  5. }
  6. body {
  7. animation: fadeInAnimation ease 1s;
  8. background-color: rgb(30 30 30);
  9. }
  10. .custom-file-upload {
  11. display: inline-block;
  12. padding: 8px 20px;
  13. font-size: 14px;
  14. font-weight: 700;
  15. background-color: #2b2b2b;
  16. border-radius: 4px;
  17. transition: all .2s ease-in-out;
  18. cursor: pointer;
  19. color: #787878;
  20. margin-left: 5px;
  21. }
  22. .custom-file-upload:hover {
  23. background-color: #434242;
  24. }
  25. .fas.fa-cloud-upload-alt {
  26. margin-right: 10px;
  27. }
  28. .view {
  29. max-width: 800px;
  30. margin: 0 auto;
  31. padding: 8px;
  32. overflow: hidden;
  33. display: flex;
  34. justify-content: center;
  35. align-items: center;
  36. }
  37. .head-box {
  38. max-width: 788px;
  39. height: 280px;
  40. background-image: url(../src/3.jpg);
  41. background-size: cover;
  42. background-position: center center;
  43. margin: 0 auto;
  44. margin-top: 30px;
  45. border: solid 5px rgb(99 163 113 / 20%);
  46. border-radius: 20px;
  47. }
  48. #record-button {
  49. display: block;
  50. margin-right: 10px;
  51. width: 100%;
  52. max-width: 400px;
  53. height: 50px;
  54. background-color: #2b2b2b;
  55. border-radius: 10px;
  56. font-size: 25px;
  57. color: #a1a1a1;
  58. }
  59. #audio-player {
  60. display: block;
  61. margin-right: 10px;
  62. width: 100%;
  63. max-width: 400px;
  64. height: 50px;
  65. background-color: #f1f1f1;
  66. border-radius: 10px;
  67. }
  68. #audio-player::-webkit-media-controls-panel {
  69. background-color: transparent !important;
  70. -webkit-box-shadow: none !important;
  71. box-shadow: none !important;
  72. }
  73. #audio-player::-webkit-media-controls-play-button,
  74. #audio-player::-webkit-media-controls-pause-button {
  75. display: none !important;
  76. }
  77. #go-view {
  78. padding: 15px;
  79. margin-top: 10px;
  80. border-radius: 20px;
  81. padding: 20px;
  82. background-color: rgb(38 38 38);
  83. border: solid 3px rgb(187 187 187 / 20%);
  84. }
  85. .code-Attr {
  86. font-family: "Lucida Console", Consolas, "Courier", monospace;
  87. font-size: 19px;
  88. font-weight: bold;
  89. overflow: hidden;
  90. }
  91. p {
  92. letter-spacing: 2px;
  93. color: #787878;
  94. font-weight: bold;
  95. text-decoration: none;
  96. font-size: 19px;
  97. margin-left: 5px;
  98. }
  99. .cm-keyword {
  100. color: rgb(64 145 31);
  101. }
  102. .cm-string {
  103. color: rgb(17 170 78);
  104. font-family: cursive;
  105. }
  106. hr {
  107. height: 2px;
  108. margin: 16px 0;
  109. border: 0 none;
  110. background-color: #262626;
  111. }
  112. .cm-variable {
  113. color: rgb(121 125 255);
  114. }
  115. #View-center {
  116. max-width: 800px;
  117. margin: 0 auto;
  118. padding: 10px;
  119. padding-bottom: 100px;
  120. overflow: hidden;
  121. }
  122. button {
  123. display: block;
  124. width: 100%;
  125. padding: 10px 20px;
  126. border-radius: 10px;
  127. font-size: 16px;
  128. background-color: #1c7032;
  129. color: white;
  130. border: none;
  131. cursor: pointer;
  132. margin-top: 20px;
  133. font-size: 13px;
  134. font-weight: bold;
  135. transition: background-color 0.5s ease;
  136. }
  137. button[disabled] {
  138. opacity: 0.5;
  139. cursor: not-allowed;
  140. }
  141. audio {
  142. display: block;
  143. margin-top: 20px;
  144. }