2022-12-24 10:18:20 -03:00
|
|
|
/* Layout variables */
|
|
|
|
:root {
|
|
|
|
--footer-height: 51px;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Color variables */
|
|
|
|
:root {
|
|
|
|
/*
|
|
|
|
TODO: Variables here were magic colors
|
|
|
|
found scattered around in the primary CSS.
|
|
|
|
Move them to in their respective themes
|
|
|
|
in the future :v
|
|
|
|
*/
|
|
|
|
--element-border-focus: #5f6368;
|
|
|
|
}
|
|
|
|
|
2022-02-17 17:14:56 -03:00
|
|
|
html {
|
2022-03-09 09:18:24 -03:00
|
|
|
color: var(--main-fg);
|
2022-03-15 07:37:21 -03:00
|
|
|
background-color: var(--main-bg);
|
2022-08-16 06:18:38 -04:00
|
|
|
font-family: Arial, Helvetica, sans-serif;
|
2022-08-16 07:19:14 -04:00
|
|
|
font-size: 16px;
|
2022-08-13 02:47:02 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
body {
|
2022-08-13 06:56:46 -04:00
|
|
|
margin: 0;
|
2022-02-21 18:00:59 -03:00
|
|
|
}
|
|
|
|
|
2022-03-15 07:37:21 -03:00
|
|
|
input,
|
2022-02-21 18:00:59 -03:00
|
|
|
button {
|
|
|
|
outline: none;
|
|
|
|
}
|
2022-02-17 17:14:56 -03:00
|
|
|
|
2022-02-24 18:29:10 -03:00
|
|
|
button {
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
2022-02-20 11:44:51 -03:00
|
|
|
|
2022-02-24 18:29:10 -03:00
|
|
|
p {
|
2022-08-16 07:19:14 -04:00
|
|
|
font-size: 18px;
|
2022-03-09 09:18:24 -03:00
|
|
|
color: var(--result-fg);
|
2022-02-24 18:29:10 -03:00
|
|
|
}
|
2022-02-20 11:44:51 -03:00
|
|
|
|
2022-02-24 18:29:10 -03:00
|
|
|
a,
|
|
|
|
.text-result-wrapper a:hover {
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
2022-02-20 18:57:23 -03:00
|
|
|
|
2022-06-27 17:00:22 -04:00
|
|
|
.text-result-wrapper a:visited h2,
|
|
|
|
.special-result-container a,
|
2022-08-13 02:47:02 -04:00
|
|
|
.sub-search-button-wrapper button {
|
|
|
|
color: #bd93f9;
|
2022-03-15 07:37:21 -03:00
|
|
|
}
|
|
|
|
|
2022-08-13 02:47:02 -04:00
|
|
|
a:hover,
|
|
|
|
.text-result-wrapper h2:hover {
|
2022-02-24 18:29:10 -03:00
|
|
|
text-decoration: underline;
|
|
|
|
}
|
2022-02-20 11:44:51 -03:00
|
|
|
|
2022-02-24 18:29:10 -03:00
|
|
|
.search-container {
|
2022-12-24 10:18:20 -03:00
|
|
|
/* Make the search container take up 100% of the screen height
|
|
|
|
And cooperate with the footer */
|
|
|
|
height: calc(100vh - var(--footer-height));
|
|
|
|
|
|
|
|
/* Flex properties for correct alignment */
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
|
|
|
|
/* Align text & items in the middle */
|
2022-02-24 18:29:10 -03:00
|
|
|
text-align: center;
|
2022-12-24 10:18:20 -03:00
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
2022-12-24 10:30:56 -03:00
|
|
|
|
|
|
|
/* Gap between elements */
|
|
|
|
gap: 1rem
|
2022-02-24 18:29:10 -03:00
|
|
|
}
|
2022-02-20 11:44:51 -03:00
|
|
|
|
2022-02-24 18:29:10 -03:00
|
|
|
.search-container h1 {
|
|
|
|
font-size: 70px;
|
2022-12-24 10:30:56 -03:00
|
|
|
|
|
|
|
/* Remove unnecessary margin */
|
|
|
|
margin-bottom: 0;
|
2022-02-24 18:29:10 -03:00
|
|
|
}
|
2022-02-20 11:44:51 -03:00
|
|
|
|
2022-02-24 18:29:10 -03:00
|
|
|
.search-container input,
|
|
|
|
.sub-search-container input {
|
|
|
|
width: 500px;
|
2022-08-13 04:47:27 -04:00
|
|
|
color: var(--search-container-text-color);
|
|
|
|
background-color: var(--search-container-background-color);
|
2022-02-24 18:29:10 -03:00
|
|
|
font-size: inherit;
|
2022-08-19 00:26:41 -04:00
|
|
|
font-family: sans-serif;
|
2022-09-03 20:31:15 -04:00
|
|
|
border: 1px solid var(--search-container-background-border);
|
2022-02-24 18:29:10 -03:00
|
|
|
border-radius: 25px;
|
2022-12-24 10:18:20 -03:00
|
|
|
|
|
|
|
/* Give a wider padding on the X axis to look more appealing */
|
|
|
|
padding: 10px 16px;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Input focus style for accessibility */
|
|
|
|
.search-container input:focus,
|
|
|
|
.sub-search-container input:focus {
|
|
|
|
border: 1px solid var(--element-border-focus);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Make sure that we can differentiate the placeholder
|
|
|
|
from real input */
|
|
|
|
.search-container input::placeholder,
|
|
|
|
.sub-search-container input::placeholder {
|
|
|
|
font-style: italic;
|
2022-02-24 18:29:10 -03:00
|
|
|
}
|
2022-02-20 11:44:51 -03:00
|
|
|
|
2022-12-24 10:30:56 -03:00
|
|
|
/* Make the search button wrapper a flexbox */
|
|
|
|
.search-button-wrapper {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
|
|
|
align-items: center;
|
|
|
|
gap: 1rem;
|
|
|
|
}
|
|
|
|
|
2022-03-15 07:37:21 -03:00
|
|
|
.search-button-wrapper button,
|
|
|
|
.misc-container button,
|
|
|
|
.misc-container select {
|
2022-02-24 18:29:10 -03:00
|
|
|
color: inherit;
|
2022-03-09 09:18:24 -03:00
|
|
|
background-color: var(--button-bg);
|
2022-02-24 18:29:10 -03:00
|
|
|
font-size: 14px;
|
2022-09-03 20:31:15 -04:00
|
|
|
border: 1px solid var(--main-bg);
|
2022-02-24 18:29:10 -03:00
|
|
|
border-radius: 4px;
|
2022-12-24 10:30:56 -03:00
|
|
|
padding: 12px 10px;
|
2022-02-24 18:29:10 -03:00
|
|
|
}
|
2022-02-20 11:44:51 -03:00
|
|
|
|
2022-02-24 18:29:10 -03:00
|
|
|
.sub-search-container {
|
2022-08-13 07:19:15 -04:00
|
|
|
background-color: var(--search-form-background-color);
|
2022-08-13 06:56:46 -04:00
|
|
|
width: 100%;
|
2022-09-03 20:31:15 -04:00
|
|
|
border-bottom: 1px solid var(--border);
|
2022-02-24 18:29:10 -03:00
|
|
|
}
|
2022-02-20 11:44:51 -03:00
|
|
|
|
2022-02-24 18:29:10 -03:00
|
|
|
.sub-search-container hr {
|
2022-08-13 07:13:00 -04:00
|
|
|
opacity: 0;
|
2022-02-24 18:29:10 -03:00
|
|
|
}
|
2022-02-20 11:44:51 -03:00
|
|
|
|
2022-02-24 18:29:10 -03:00
|
|
|
.sub-search-container input {
|
2022-08-13 02:47:02 -04:00
|
|
|
margin-bottom: 20px;
|
|
|
|
width: 580px;
|
2022-09-03 20:31:15 -04:00
|
|
|
position: relative;
|
|
|
|
left: 140px;
|
|
|
|
margin: 18px;
|
2022-02-24 18:29:10 -03:00
|
|
|
}
|
2022-02-20 11:44:51 -03:00
|
|
|
|
2022-08-14 21:40:23 -04:00
|
|
|
.logomobile {
|
2022-09-03 20:31:15 -04:00
|
|
|
position: absolute;
|
|
|
|
margin-top: 0px;
|
2022-09-14 21:44:10 -03:00
|
|
|
top: 25px;
|
2022-09-03 20:31:15 -04:00
|
|
|
left: 20px;
|
2022-08-14 22:17:04 -04:00
|
|
|
}
|
|
|
|
|
2022-09-16 05:23:57 -03:00
|
|
|
.no-decoration {
|
2022-08-14 22:17:04 -04:00
|
|
|
text-decoration: none;
|
2022-08-14 22:22:31 -04:00
|
|
|
color: var(--main-fg);
|
2022-08-14 21:40:23 -04:00
|
|
|
}
|
|
|
|
|
2022-09-16 05:23:57 -03:00
|
|
|
.no-decoration:hover {
|
2022-08-14 23:04:04 -04:00
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
|
2022-02-24 18:29:10 -03:00
|
|
|
.sub-search-button-wrapper {
|
2022-09-03 20:31:15 -04:00
|
|
|
margin-left: 165px;
|
2022-02-24 18:29:10 -03:00
|
|
|
}
|
2022-02-20 11:44:51 -03:00
|
|
|
|
2022-03-10 07:18:07 -03:00
|
|
|
.search-button-wrapper button:hover,
|
2022-03-15 07:37:21 -03:00
|
|
|
.misc-container button:hover {
|
2022-12-24 10:18:20 -03:00
|
|
|
border: 1px solid var(--element-border-focus);
|
2022-02-24 18:29:10 -03:00
|
|
|
cursor: pointer;
|
|
|
|
}
|
2022-02-20 11:44:51 -03:00
|
|
|
|
2022-08-13 02:47:02 -04:00
|
|
|
.sub-search-button-wrapper i {
|
2022-02-24 18:29:10 -03:00
|
|
|
vertical-align: middle;
|
2022-08-13 02:47:02 -04:00
|
|
|
margin-right: 5px;
|
2022-02-24 18:29:10 -03:00
|
|
|
}
|
2022-02-20 11:44:51 -03:00
|
|
|
|
2022-02-24 18:29:10 -03:00
|
|
|
.sub-search-button-wrapper button {
|
|
|
|
border: none;
|
|
|
|
background-color: inherit;
|
2022-08-16 09:50:44 -04:00
|
|
|
font-size: 15px;
|
2022-08-13 02:47:02 -04:00
|
|
|
margin-right: 14px;
|
2022-02-24 18:29:10 -03:00
|
|
|
}
|
2022-02-20 11:44:51 -03:00
|
|
|
|
2022-08-16 07:49:48 -04:00
|
|
|
.sub-search-button-wrapper img {
|
|
|
|
vertical-align: middle;
|
2022-08-19 00:26:41 -04:00
|
|
|
margin-right: 5px;
|
|
|
|
width: 20px;
|
2022-08-16 07:49:48 -04:00
|
|
|
}
|
|
|
|
|
2022-03-15 07:37:21 -03:00
|
|
|
.misc-container {
|
2022-03-09 09:18:24 -03:00
|
|
|
text-align: center;
|
|
|
|
word-wrap: break-word;
|
2022-03-15 07:37:21 -03:00
|
|
|
width: 450px;
|
|
|
|
margin-left: auto;
|
|
|
|
margin-right: auto;
|
2022-09-16 05:23:57 -03:00
|
|
|
margin-bottom: 100px;
|
2022-03-15 07:37:21 -03:00
|
|
|
}
|
|
|
|
|
|
|
|
.misc-container div {
|
|
|
|
margin-bottom: 30px;
|
2022-03-09 09:18:24 -03:00
|
|
|
}
|
|
|
|
|
2022-03-15 07:37:21 -03:00
|
|
|
.misc-container button {
|
2022-08-13 02:47:02 -04:00
|
|
|
margin-right: 10px;
|
|
|
|
margin-left: 10px;
|
2022-03-10 07:18:07 -03:00
|
|
|
}
|
|
|
|
|
2022-03-15 07:37:21 -03:00
|
|
|
.misc-container a {
|
2022-08-13 02:47:02 -04:00
|
|
|
color: inherit;
|
2022-03-10 07:18:07 -03:00
|
|
|
text-decoration: underline;
|
|
|
|
}
|
|
|
|
|
2022-03-15 07:37:21 -03:00
|
|
|
.instances-container div {
|
2022-08-13 02:47:02 -04:00
|
|
|
text-align: left;
|
|
|
|
margin-bottom: 25px;
|
2022-03-15 07:37:21 -03:00
|
|
|
}
|
|
|
|
|
2022-03-09 09:18:24 -03:00
|
|
|
.instances-container input {
|
|
|
|
color: inherit;
|
2022-03-15 07:37:21 -03:00
|
|
|
background-color: inherit;
|
2022-03-09 09:18:24 -03:00
|
|
|
padding: 5px;
|
|
|
|
font-size: inherit;
|
|
|
|
font-family: inherit;
|
2022-12-24 10:18:20 -03:00
|
|
|
border: 1px solid var(--element-border-focus);
|
2022-03-09 09:18:24 -03:00
|
|
|
border-radius: 5px;
|
2022-03-15 07:37:21 -03:00
|
|
|
float: right;
|
2022-03-09 09:18:24 -03:00
|
|
|
}
|
|
|
|
|
2022-02-24 18:29:10 -03:00
|
|
|
.text-result-container,
|
|
|
|
#time,
|
|
|
|
.next-page-button-wrapper {
|
2022-09-03 20:31:15 -04:00
|
|
|
margin-left: 170px;
|
2022-02-24 18:29:10 -03:00
|
|
|
}
|
2022-02-20 11:44:51 -03:00
|
|
|
|
2022-08-13 02:47:02 -04:00
|
|
|
.text-result-container {
|
2022-07-15 09:50:23 -04:00
|
|
|
margin-bottom: 100px;
|
2022-02-20 18:57:23 -03:00
|
|
|
}
|
|
|
|
|
2022-02-24 18:29:10 -03:00
|
|
|
.special-result-container {
|
2022-02-20 18:57:23 -03:00
|
|
|
padding: 10px;
|
2022-08-13 04:47:27 -04:00
|
|
|
border: 1px solid var(--special-result-border);
|
2022-02-20 18:57:23 -03:00
|
|
|
width: 500px;
|
2022-08-14 22:31:57 -04:00
|
|
|
border-radius: 8px;
|
2022-08-13 04:47:27 -04:00
|
|
|
background: var(--special-text-background);
|
|
|
|
color: var(--special-text-color);
|
2022-09-03 20:31:15 -04:00
|
|
|
margin-left: 840px;
|
|
|
|
margin-top: 0px;
|
|
|
|
position: absolute;
|
|
|
|
}
|
|
|
|
|
2022-02-24 18:29:10 -03:00
|
|
|
.text-result-wrapper {
|
2022-09-03 20:31:15 -04:00
|
|
|
max-width: 550px;
|
2022-02-25 16:26:15 -03:00
|
|
|
word-wrap: break-word;
|
2022-09-14 21:49:55 -03:00
|
|
|
margin-bottom: 35px;
|
2022-02-20 18:57:23 -03:00
|
|
|
}
|
|
|
|
|
2022-02-24 18:29:10 -03:00
|
|
|
.text-result-wrapper a {
|
|
|
|
font-size: 14px;
|
2022-03-09 09:18:24 -03:00
|
|
|
color: var(--result-fg);
|
2022-02-24 18:29:10 -03:00
|
|
|
}
|
|
|
|
|
2022-09-03 20:31:15 -04:00
|
|
|
.video-img {
|
|
|
|
height: 115px;
|
|
|
|
border-radius: 12px;
|
|
|
|
}
|
|
|
|
|
2022-02-24 18:29:10 -03:00
|
|
|
.text-result-wrapper h2 {
|
|
|
|
font-size: 20px;
|
2022-03-09 09:18:24 -03:00
|
|
|
color: var(--result-link-fg);
|
2022-02-24 18:29:10 -03:00
|
|
|
padding-top: 5px;
|
|
|
|
margin-top: 1px;
|
|
|
|
}
|
2022-02-23 16:47:10 -03:00
|
|
|
|
2022-02-24 18:29:10 -03:00
|
|
|
.special-result-container a {
|
2022-02-23 16:47:10 -03:00
|
|
|
display: flex;
|
2022-02-24 18:29:10 -03:00
|
|
|
margin-top: 10px;
|
2022-08-13 02:47:02 -04:00
|
|
|
font-size: 14px;
|
2022-02-23 16:47:10 -03:00
|
|
|
}
|
2022-02-20 18:57:23 -03:00
|
|
|
|
2022-03-30 08:18:31 -03:00
|
|
|
.special-result-container img {
|
|
|
|
display: flex;
|
|
|
|
max-width: 60%;
|
|
|
|
max-height: 200px;
|
2022-08-13 02:47:02 -04:00
|
|
|
padding-bottom: 10px;
|
|
|
|
margin-left: auto;
|
|
|
|
margin-right: auto;
|
2022-03-30 08:18:31 -03:00
|
|
|
}
|
|
|
|
|
2022-02-24 18:29:10 -03:00
|
|
|
.next-page-button-wrapper {
|
2022-08-13 02:47:02 -04:00
|
|
|
margin-top: -50px;
|
|
|
|
margin-bottom: 100px;
|
2022-02-24 18:29:10 -03:00
|
|
|
}
|
2022-02-20 11:44:51 -03:00
|
|
|
|
2022-02-24 18:29:10 -03:00
|
|
|
.next-page-button-wrapper button {
|
2022-08-13 02:47:02 -04:00
|
|
|
border: none;
|
2022-02-24 18:29:10 -03:00
|
|
|
background-color: inherit;
|
2022-03-09 09:18:24 -03:00
|
|
|
color: var(--result-link-fg);
|
2022-03-30 08:18:31 -03:00
|
|
|
font-size: 18px;
|
|
|
|
margin-right: 8px;
|
2022-02-24 18:29:10 -03:00
|
|
|
}
|
2022-02-20 11:44:51 -03:00
|
|
|
|
2022-04-28 04:18:09 -04:00
|
|
|
.next-page-button-wrapper .page {
|
2022-02-24 18:29:10 -03:00
|
|
|
display: inline;
|
|
|
|
}
|
2022-02-20 11:44:51 -03:00
|
|
|
|
2022-02-24 18:29:10 -03:00
|
|
|
.image-result-container {
|
2022-12-03 14:37:44 -03:00
|
|
|
display: flex;
|
|
|
|
flex-wrap: wrap;
|
2022-03-11 06:46:29 -03:00
|
|
|
grid-gap: 1.5rem;
|
|
|
|
justify-items: center;
|
|
|
|
margin-left: 9%;
|
|
|
|
margin-right: 9%;
|
|
|
|
padding: 0;
|
2022-08-13 02:47:02 -04:00
|
|
|
margin-bottom: 50px;
|
2022-02-24 18:29:10 -03:00
|
|
|
}
|
2022-02-20 11:44:51 -03:00
|
|
|
|
2022-12-03 14:37:44 -03:00
|
|
|
a[title] {
|
|
|
|
flex-grow: 1;
|
|
|
|
height: 12rem;
|
|
|
|
}
|
|
|
|
|
2022-02-24 18:29:10 -03:00
|
|
|
.image-result-container img {
|
2022-12-03 14:37:44 -03:00
|
|
|
margin: 0px;
|
|
|
|
height: 100%;
|
|
|
|
width: 100%;
|
|
|
|
object-fit: cover;
|
|
|
|
vertical-align: bottom;
|
2022-02-24 18:29:10 -03:00
|
|
|
}
|
2022-02-20 14:11:15 -03:00
|
|
|
|
2022-12-03 14:37:44 -03:00
|
|
|
|
2022-04-28 04:18:09 -04:00
|
|
|
.git-container {
|
|
|
|
right: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.git-container,
|
2022-02-24 18:29:10 -03:00
|
|
|
.footer-container {
|
|
|
|
position: fixed;
|
|
|
|
bottom: 0;
|
2022-04-28 04:18:09 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
.footer-container {
|
2022-02-24 18:29:10 -03:00
|
|
|
width: 100vw;
|
2022-04-28 04:18:09 -04:00
|
|
|
left: 0;
|
2022-03-09 09:18:24 -03:00
|
|
|
background-color: var(--footer-bg);
|
2022-02-24 18:29:10 -03:00
|
|
|
padding-top: 15px;
|
|
|
|
padding-bottom: 15px;
|
2022-09-03 20:31:15 -04:00
|
|
|
border-top: 1px solid var(--border);
|
2022-02-24 18:29:10 -03:00
|
|
|
text-align: center;
|
2022-12-24 10:18:20 -03:00
|
|
|
max-height: var(--footer-height);
|
2022-02-24 18:29:10 -03:00
|
|
|
}
|
2022-02-20 11:44:51 -03:00
|
|
|
|
2022-04-28 04:18:09 -04:00
|
|
|
.git-container a {
|
|
|
|
font-size: 10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.git-container a,
|
2022-02-24 18:29:10 -03:00
|
|
|
.footer-container a {
|
2022-03-09 09:18:24 -03:00
|
|
|
color: var(--footer-fg);
|
2022-04-28 04:18:09 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
.footer-container a {
|
2022-02-24 18:29:10 -03:00
|
|
|
margin-left: 15px;
|
|
|
|
margin-right: 15px;
|
|
|
|
}
|
2022-02-20 11:44:51 -03:00
|
|
|
|
2022-06-27 17:00:22 -04:00
|
|
|
.hide {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.X {
|
|
|
|
color: #bd93f9;
|
|
|
|
}
|
|
|
|
|
|
|
|
.seeders {
|
|
|
|
color: #50fa7b;
|
|
|
|
}
|
|
|
|
|
|
|
|
.leechers {
|
|
|
|
color: #ff79c6;
|
|
|
|
}
|
|
|
|
|
2022-09-16 05:23:57 -03:00
|
|
|
@media only screen and (max-width: 1320px) {
|
|
|
|
.special-result-container {
|
|
|
|
position: relative;
|
|
|
|
float: none;
|
|
|
|
margin-left: 165px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-02-24 18:29:10 -03:00
|
|
|
/* mobile view */
|
2022-08-16 09:50:44 -04:00
|
|
|
@media only screen and (max-width: 750px) {
|
2022-09-16 05:23:57 -03:00
|
|
|
p {
|
|
|
|
font-size: 16px;
|
|
|
|
}
|
|
|
|
|
|
|
|
html {
|
|
|
|
font-size: 14px;
|
|
|
|
}
|
|
|
|
|
2022-02-24 18:29:10 -03:00
|
|
|
.search-container input {
|
|
|
|
width: 80%;
|
|
|
|
}
|
2022-02-20 11:44:51 -03:00
|
|
|
|
2022-12-24 10:30:56 -03:00
|
|
|
.search-button-wrapper {
|
|
|
|
flex-direction: column;
|
|
|
|
}
|
|
|
|
|
2022-02-24 18:29:10 -03:00
|
|
|
.search-button-wrapper button {
|
2022-12-24 10:30:56 -03:00
|
|
|
width: 100%;
|
2022-02-24 18:29:10 -03:00
|
|
|
}
|
2022-02-20 11:44:51 -03:00
|
|
|
|
2022-08-16 09:50:44 -04:00
|
|
|
.image-result-container {
|
2022-08-19 00:26:41 -04:00
|
|
|
display: unset;
|
2022-08-16 09:50:44 -04:00
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.image-result-container img {
|
|
|
|
margin: 0 5% 5% 5%;
|
|
|
|
padding: 0;
|
|
|
|
width: 90%;
|
|
|
|
border: none;
|
|
|
|
}
|
|
|
|
|
2022-04-28 04:18:09 -04:00
|
|
|
.git-container {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
2022-02-24 18:29:10 -03:00
|
|
|
.footer-container a {
|
2022-08-13 02:47:02 -04:00
|
|
|
margin: 10px;
|
2022-02-24 18:29:10 -03:00
|
|
|
}
|
2022-02-20 11:44:51 -03:00
|
|
|
|
2022-02-24 18:29:10 -03:00
|
|
|
.sub-search-container {
|
2022-08-13 02:47:02 -04:00
|
|
|
margin-left: auto;
|
|
|
|
margin-right: auto;
|
2022-02-24 18:29:10 -03:00
|
|
|
text-align: center;
|
|
|
|
}
|
2022-02-20 11:44:51 -03:00
|
|
|
|
2022-04-28 04:18:09 -04:00
|
|
|
.sub-search-container .logo {
|
2022-08-14 21:40:23 -04:00
|
|
|
display: none;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
.logomobile {
|
2022-09-03 20:31:15 -04:00
|
|
|
position: relative;
|
|
|
|
float: none;
|
2022-08-14 21:40:23 -04:00
|
|
|
margin-top: 0px;
|
|
|
|
margin-bottom: 0px;
|
2022-08-13 02:47:02 -04:00
|
|
|
margin-left: auto;
|
|
|
|
margin-right: auto;
|
2022-08-14 21:40:23 -04:00
|
|
|
padding: 10px;
|
|
|
|
font-size: 28px;
|
2022-02-24 18:29:10 -03:00
|
|
|
display: block;
|
2022-09-03 20:31:15 -04:00
|
|
|
margin-top: 0px;
|
|
|
|
top: 0px;
|
|
|
|
left: 0px;
|
2022-02-24 18:29:10 -03:00
|
|
|
}
|
2022-02-20 11:44:51 -03:00
|
|
|
|
2022-02-24 18:29:10 -03:00
|
|
|
.sub-search-container input {
|
|
|
|
width: 80%;
|
2022-09-03 20:31:15 -04:00
|
|
|
position: relative;
|
|
|
|
left: 0px;
|
|
|
|
margin-top: 0px;
|
2022-02-24 18:29:10 -03:00
|
|
|
}
|
2022-02-20 11:44:51 -03:00
|
|
|
|
2022-02-24 18:29:10 -03:00
|
|
|
.sub-search-button-wrapper {
|
2022-08-13 02:47:02 -04:00
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
2022-02-24 18:29:10 -03:00
|
|
|
display: flex;
|
2022-03-15 07:37:21 -03:00
|
|
|
align-items: baseline;
|
2022-02-24 18:29:10 -03:00
|
|
|
}
|
2022-02-23 16:47:10 -03:00
|
|
|
|
2022-02-24 18:29:10 -03:00
|
|
|
.sub-search-button-wrapper img {
|
2022-08-13 02:47:02 -04:00
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
2022-02-24 18:29:10 -03:00
|
|
|
}
|
2022-02-23 16:47:10 -03:00
|
|
|
|
2022-02-24 18:29:10 -03:00
|
|
|
.sub-search-button-wrapper button {
|
2022-08-13 02:47:02 -04:00
|
|
|
margin-left: auto;
|
|
|
|
margin-right: auto;
|
|
|
|
padding: 0;
|
2022-02-24 18:29:10 -03:00
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
align-items: center;
|
|
|
|
}
|
2022-02-21 18:00:59 -03:00
|
|
|
|
2022-03-15 07:37:21 -03:00
|
|
|
.special-result-container {
|
2022-09-03 20:31:15 -04:00
|
|
|
position: relative;
|
|
|
|
float: none;
|
|
|
|
max-width: 90%;
|
|
|
|
margin-left: 10px;
|
2022-08-15 00:11:57 -04:00
|
|
|
width: auto;
|
2022-02-24 18:29:10 -03:00
|
|
|
}
|
2022-02-23 16:47:10 -03:00
|
|
|
|
2022-03-30 08:18:31 -03:00
|
|
|
.special-result-container img {
|
|
|
|
max-width: 80%;
|
|
|
|
}
|
|
|
|
|
2022-03-15 07:37:21 -03:00
|
|
|
.misc-container {
|
|
|
|
margin-bottom: 200px;
|
|
|
|
width: 95%;
|
2022-02-20 11:44:51 -03:00
|
|
|
}
|
|
|
|
|
2022-03-15 07:37:21 -03:00
|
|
|
.search-container h1 {
|
2022-08-13 02:47:02 -04:00
|
|
|
font-size: 55px;
|
2022-02-24 18:29:10 -03:00
|
|
|
}
|
2022-07-15 09:50:23 -04:00
|
|
|
|
|
|
|
.search-container {
|
|
|
|
margin-top: 10%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.text-result-container,
|
|
|
|
#time,
|
|
|
|
.next-page-button-wrapper {
|
2022-08-15 00:45:38 -04:00
|
|
|
margin-left: 20px;
|
|
|
|
max-width: 90%;
|
2022-07-15 09:50:23 -04:00
|
|
|
}
|
2022-08-13 09:59:01 -04:00
|
|
|
}
|