style-dark.css 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304
  1. :root {
  2. --accent-color:#12e8b9;
  3. --fg-color: white;
  4. --border-color: rgb(97, 97, 97);
  5. --main: #2a2b2b;
  6. --main-second: #1f2120;
  7. }
  8. body {
  9. background-color: var(--main);
  10. color: var(--fg-color);
  11. font-family: verdana, arial, sans-serif;
  12. overflow-x: hidden;
  13. padding: 0;
  14. margin: 0;
  15. font-size: 16px;
  16. }
  17. input:focus {
  18. border: 1px solid var(--border-color);
  19. }
  20. .accent{
  21. color: var(--accent-color);
  22. }
  23. .centered {
  24. position: absolute;
  25. top: 40%;
  26. left: 50%;
  27. margin-right: -50%;
  28. transform: translate(-50%, -50%);
  29. }
  30. .hide{
  31. display: none;
  32. }
  33. #bodyHeader {
  34. margin: 0;
  35. }
  36. .mainContainer p {
  37. margin-bottom:30px;
  38. margin-top: 5px;
  39. }
  40. .mainContainer h1 {
  41. font-size: 50px;
  42. }
  43. .bodyText {
  44. text-align: center;
  45. }
  46. .container {
  47. text-align: center;
  48. align-items: center;
  49. justify-content: center;
  50. }
  51. footer {
  52. display: flex;
  53. align-items: center;
  54. flex-wrap: wrap;
  55. justify-content: center;
  56. width: 100vw;
  57. padding: 10px;
  58. background-color: var(--main-second);
  59. position: fixed;
  60. bottom: 0;
  61. }
  62. footer a{
  63. margin-right: 30px;
  64. }
  65. #footerText {
  66. margin: 10px;
  67. padding: 10px;
  68. }
  69. .sep:before {
  70. content: "\f004 ";
  71. }
  72. a {
  73. text-decoration: none;
  74. color: var(--fg-color);
  75. }
  76. footer a:hover{
  77. color: var(--accent-color);
  78. }
  79. #inputWrapper {
  80. display: flex;
  81. align-items: center;
  82. text-align: center;
  83. justify-content: center;
  84. }
  85. input {
  86. width: 500px;
  87. outline: none;
  88. color: white;
  89. background-color: var(--main-second);
  90. border: 1px solid var(--main-second);
  91. border-radius: 10px 0px 0px 10px;
  92. padding: 15px;
  93. font-size: inherit;
  94. }
  95. button {
  96. padding: 15px;
  97. color: var(--main-second);
  98. background-color: var(--accent-color);
  99. border: 0;
  100. border-radius: 0px 10px 10px 0px;
  101. cursor: pointer;
  102. font-size: 15px;
  103. font-weight: bold;
  104. }
  105. /* search css start */
  106. .search-container{
  107. display: flex;
  108. align-items: center;
  109. margin: 20px 20px 40px 20px;
  110. }
  111. .search-container h1{
  112. margin: 0;
  113. }
  114. .search-container input{
  115. border-radius: 10px;
  116. margin-left: 100px;
  117. }
  118. .img-result img {
  119. height: 100%;
  120. width: 100%;
  121. object-fit: cover;
  122. border-radius: 0.2rem;
  123. }
  124. .img-container{
  125. column-count: auto;
  126. column-width: 14rem;
  127. column-gap: 0.5rem;
  128. padding: 1rem;
  129. }
  130. .img-result {
  131. margin-bottom: 0.5rem;
  132. display: block;
  133. }
  134. /* search css end */
  135. /* donate css start */
  136. .donate-container {
  137. width: 700px;
  138. margin-left: auto;
  139. margin-right: auto;
  140. margin-bottom: 100px;
  141. }
  142. .flexbox-column {
  143. display: flex;
  144. flex-direction: column;
  145. justify-content: space-between;
  146. align-items: center;
  147. gap: 10px;
  148. }
  149. .inner-wrap {
  150. width: 500px;
  151. padding: 20px;
  152. }
  153. .qr-box {
  154. background-color: var(--main-second);
  155. border: 1px solid var(--border-color);
  156. border-radius: 10px 0px 0px 10px;
  157. width: 100%;
  158. display: flex;
  159. word-wrap: break-word;
  160. align-items: center;
  161. justify-content: space-between;
  162. }
  163. .flex-row {
  164. width: 700px;
  165. height: auto;
  166. display: flex;
  167. flex-direction: row;
  168. justify-content: space-evenly;
  169. margin: 25px 0;
  170. }
  171. hr.small-line {
  172. border: 2px solid var(--fg-color);
  173. height: 0px;
  174. width: 100px;
  175. margin: 30px;
  176. border-radius: 2px;
  177. }
  178. /* donate css end */
  179. @media only screen and (max-width: 750px) {
  180. body{
  181. font-size: 14px;
  182. }
  183. .mainContainer h1 {
  184. font-size: 35px;
  185. }
  186. input{
  187. width: 100%;
  188. }
  189. .centered {
  190. width: 95%;
  191. }
  192. .search-container{
  193. display: flex;
  194. flex-direction: column;
  195. align-items: center;
  196. }
  197. .search-container input {
  198. width: 95%;
  199. margin-top: 20px;
  200. margin-left: 0;
  201. }
  202. /* dontate css start*/
  203. .donate-container {
  204. margin-bottom: 100px;
  205. width: 95%;
  206. text-align: center;
  207. }
  208. .qr-box {
  209. display: flex;
  210. flex-direction: column;
  211. word-wrap: break-word;
  212. align-items: center;
  213. justify-content: space-between;
  214. word-wrap: break-word;
  215. height: auto;
  216. }
  217. .qr-box {
  218. border-radius: 10px;
  219. flex-direction: column;
  220. align-items: center;
  221. }
  222. .inner-wrap {
  223. width: 80%;
  224. text-align: center;
  225. }
  226. .qr-box img {
  227. width: 40%;
  228. height: auto;
  229. padding: 20px;
  230. }
  231. .flex-row {
  232. flex-direction: column;
  233. gap: 5px;
  234. width: 0;
  235. }
  236. .flex-row a img {
  237. width: 220px;
  238. height: auto;
  239. }
  240. /* donate css end */
  241. }