styles.css 7.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466
  1. html {
  2. color: var(--main-fg);
  3. background-color: var(--main-bg);
  4. font-family: Arial, Helvetica, sans-serif;
  5. font-size: 16px;
  6. }
  7. body {
  8. margin: 0;
  9. }
  10. input,
  11. button {
  12. outline: none;
  13. }
  14. button {
  15. cursor: pointer;
  16. }
  17. p {
  18. font-size: 18px;
  19. color: var(--result-fg);
  20. }
  21. a,
  22. .text-result-wrapper a:hover {
  23. text-decoration: none;
  24. }
  25. .text-result-wrapper a:visited h2,
  26. .special-result-container a,
  27. .sub-search-button-wrapper button {
  28. color: #bd93f9;
  29. }
  30. a:hover,
  31. .text-result-wrapper h2:hover {
  32. text-decoration: underline;
  33. }
  34. .search-container {
  35. text-align: center;
  36. margin-top: 10%;
  37. }
  38. .search-container h1 {
  39. font-size: 70px;
  40. }
  41. .search-container input,
  42. .sub-search-container input {
  43. width: 500px;
  44. color: var(--search-container-text-color);
  45. background-color: var(--search-container-background-color);
  46. padding: 10px;
  47. font-size: inherit;
  48. font-family: sans-serif;
  49. border: 1px solid var(--search-container-background-border);
  50. border-radius: 25px;
  51. }
  52. .search-button-wrapper button,
  53. .misc-container button,
  54. .misc-container select {
  55. color: inherit;
  56. background-color: var(--button-bg);
  57. font-size: 14px;
  58. border: 1px solid var(--main-bg);
  59. border-radius: 4px;
  60. padding: 13px 10px 13px 10px;
  61. }
  62. .search-button-wrapper button {
  63. margin: 30px 60px 0px 60px;
  64. }
  65. .sub-search-container {
  66. background-color: var(--search-form-background-color);
  67. width: 100%;
  68. border-bottom: 1px solid var(--border);
  69. }
  70. .sub-search-container hr {
  71. opacity: 0;
  72. }
  73. .sub-search-container input {
  74. margin-bottom: 20px;
  75. width: 580px;
  76. position: relative;
  77. left: 140px;
  78. margin: 18px;
  79. }
  80. .logomobile {
  81. position: absolute;
  82. margin-top: 0px;
  83. top: 25px;
  84. left: 20px;
  85. }
  86. .no-decoration {
  87. text-decoration: none;
  88. color: var(--main-fg);
  89. }
  90. .no-decoration:hover {
  91. text-decoration: none;
  92. }
  93. .sub-search-button-wrapper {
  94. margin-left: 165px;
  95. }
  96. .search-button-wrapper button:hover,
  97. .misc-container button:hover {
  98. border: 1px solid #5f6368;
  99. cursor: pointer;
  100. }
  101. .sub-search-button-wrapper i {
  102. vertical-align: middle;
  103. margin-right: 5px;
  104. }
  105. .sub-search-button-wrapper button {
  106. border: none;
  107. background-color: inherit;
  108. font-size: 15px;
  109. margin-right: 14px;
  110. }
  111. .sub-search-button-wrapper img {
  112. vertical-align: middle;
  113. margin-right: 5px;
  114. width: 20px;
  115. }
  116. .misc-container {
  117. text-align: center;
  118. word-wrap: break-word;
  119. width: 450px;
  120. margin-left: auto;
  121. margin-right: auto;
  122. margin-bottom: 100px;
  123. }
  124. .misc-container div {
  125. margin-bottom: 30px;
  126. }
  127. .misc-container button {
  128. margin-right: 10px;
  129. margin-left: 10px;
  130. }
  131. .misc-container a {
  132. color: inherit;
  133. text-decoration: underline;
  134. }
  135. .instances-container div {
  136. text-align: left;
  137. margin-bottom: 25px;
  138. }
  139. .instances-container input {
  140. color: inherit;
  141. background-color: inherit;
  142. padding: 5px;
  143. font-size: inherit;
  144. font-family: inherit;
  145. border: 1px solid #5f6368;
  146. border-radius: 5px;
  147. float: right;
  148. }
  149. .text-result-container,
  150. #time,
  151. .next-page-button-wrapper {
  152. margin-left: 170px;
  153. }
  154. .text-result-container {
  155. margin-bottom: 100px;
  156. }
  157. .special-result-container {
  158. padding: 10px;
  159. border: 1px solid var(--special-result-border);
  160. width: 500px;
  161. border-radius: 8px;
  162. background: var(--special-text-background);
  163. color: var(--special-text-color);
  164. margin-left: 840px;
  165. margin-top: 0px;
  166. position: absolute;
  167. }
  168. .text-result-wrapper {
  169. max-width: 550px;
  170. word-wrap: break-word;
  171. margin-bottom: 35px;
  172. }
  173. .text-result-wrapper a {
  174. font-size: 14px;
  175. color: var(--result-fg);
  176. }
  177. .video-img {
  178. height: 115px;
  179. border-radius: 12px;
  180. }
  181. .text-result-wrapper h2 {
  182. font-size: 20px;
  183. color: var(--result-link-fg);
  184. padding-top: 5px;
  185. margin-top: 1px;
  186. }
  187. .special-result-container a {
  188. display: flex;
  189. margin-top: 10px;
  190. font-size: 14px;
  191. }
  192. .special-result-container img {
  193. display: flex;
  194. max-width: 60%;
  195. max-height: 200px;
  196. padding-bottom: 10px;
  197. margin-left: auto;
  198. margin-right: auto;
  199. }
  200. .next-page-button-wrapper {
  201. margin-top: -50px;
  202. margin-bottom: 100px;
  203. }
  204. .next-page-button-wrapper button {
  205. border: none;
  206. background-color: inherit;
  207. color: var(--result-link-fg);
  208. font-size: 18px;
  209. margin-right: 8px;
  210. }
  211. .next-page-button-wrapper .page {
  212. display: inline;
  213. }
  214. .image-result-container {
  215. display: flex;
  216. flex-wrap: wrap;
  217. grid-gap: 1.5rem;
  218. justify-items: center;
  219. margin-left: 9%;
  220. margin-right: 9%;
  221. padding: 0;
  222. margin-bottom: 50px;
  223. }
  224. a[title] {
  225. flex-grow: 1;
  226. height: 12rem;
  227. }
  228. .image-result-container img {
  229. margin: 0px;
  230. height: 100%;
  231. width: 100%;
  232. object-fit: cover;
  233. vertical-align: bottom;
  234. }
  235. .git-container {
  236. right: 0;
  237. }
  238. .git-container,
  239. .footer-container {
  240. position: fixed;
  241. bottom: 0;
  242. }
  243. .footer-container {
  244. width: 100vw;
  245. left: 0;
  246. background-color: var(--footer-bg);
  247. padding-top: 15px;
  248. padding-bottom: 15px;
  249. border-top: 1px solid var(--border);
  250. text-align: center;
  251. }
  252. .git-container a {
  253. font-size: 10px;
  254. }
  255. .git-container a,
  256. .footer-container a {
  257. color: var(--footer-fg);
  258. }
  259. .footer-container a {
  260. margin-left: 15px;
  261. margin-right: 15px;
  262. }
  263. .hide {
  264. display: none;
  265. }
  266. .X {
  267. color: #bd93f9;
  268. }
  269. .seeders {
  270. color: #50fa7b;
  271. }
  272. .leechers {
  273. color: #ff79c6;
  274. }
  275. @media only screen and (max-width: 1320px) {
  276. .special-result-container {
  277. position: relative;
  278. float: none;
  279. margin-left: 165px;
  280. }
  281. }
  282. /* mobile view */
  283. @media only screen and (max-width: 750px) {
  284. p {
  285. font-size: 16px;
  286. }
  287. html {
  288. font-size: 14px;
  289. }
  290. .search-container input {
  291. width: 80%;
  292. }
  293. .search-button-wrapper button {
  294. display: table-row;
  295. margin: 30px 0px 0px 0px;
  296. width: 80%;
  297. }
  298. .image-result-container {
  299. display: unset;
  300. margin: 0;
  301. padding: 0;
  302. }
  303. .image-result-container img {
  304. margin: 0 5% 5% 5%;
  305. padding: 0;
  306. width: 90%;
  307. border: none;
  308. }
  309. .git-container {
  310. display: none;
  311. }
  312. .footer-container a {
  313. margin: 10px;
  314. }
  315. .sub-search-container {
  316. margin-left: auto;
  317. margin-right: auto;
  318. text-align: center;
  319. }
  320. .sub-search-container .logo {
  321. display: none;
  322. }
  323. .logomobile {
  324. position: relative;
  325. float: none;
  326. margin-top: 0px;
  327. margin-bottom: 0px;
  328. margin-left: auto;
  329. margin-right: auto;
  330. padding: 10px;
  331. font-size: 28px;
  332. display: block;
  333. margin-top: 0px;
  334. top: 0px;
  335. left: 0px;
  336. }
  337. .sub-search-container input {
  338. width: 80%;
  339. position: relative;
  340. left: 0px;
  341. margin-top: 0px;
  342. }
  343. .sub-search-button-wrapper {
  344. margin: 0;
  345. padding: 0;
  346. display: flex;
  347. align-items: baseline;
  348. }
  349. .sub-search-button-wrapper img {
  350. margin: 0;
  351. padding: 0;
  352. }
  353. .sub-search-button-wrapper button {
  354. margin-left: auto;
  355. margin-right: auto;
  356. padding: 0;
  357. display: flex;
  358. flex-direction: column;
  359. align-items: center;
  360. }
  361. .special-result-container {
  362. position: relative;
  363. float: none;
  364. max-width: 90%;
  365. margin-left: 10px;
  366. width: auto;
  367. }
  368. .special-result-container img {
  369. max-width: 80%;
  370. }
  371. .misc-container {
  372. margin-bottom: 200px;
  373. width: 95%;
  374. }
  375. .search-container h1 {
  376. font-size: 55px;
  377. }
  378. .search-container {
  379. margin-top: 10%;
  380. }
  381. .text-result-container,
  382. #time,
  383. .next-page-button-wrapper {
  384. margin-left: 20px;
  385. max-width: 90%;
  386. }
  387. }