
/* SRC: /static/index.css */
html,body {
 margin: 0px;
 padding: 0px;
 width: 100vw;
 height: 100vh;
 overflow: scroll;
}

body {
 display: flex;
 flex-direction: column;

 background-color: #20202a;
 color: #eee;

 font-size: large;
 font-family: monospace;
}

.version {
 position: absolute;
 display: flex;
 text-align: right;
 padding: 0px;
 margin: 0px;

 font-size: small;
}

/* SRC: /static/main.css */
.Home, .Search {
 display: flex;
 justify-content: center;
 align-items: center;



 width: 100vw;
 height: 100vh;
}

.contentBox {
 display: flex;
 flex-direction: column;
 align-items: center;
 text-align: center;
 
 outline: 2px solid whitesmoke;
 padding: 16px;


 min-height: 20%; 

}

.tileBox {
 display: flex;
 justify-content: center;
 padding: 2px;

 width: 100%;

 margin-top: 16px;
}

.homeTile {
 display: flex;
 flex-direction: column;
 margin: 4px;
 padding: 4px;

 justify-content: center;
 outline: 1px solid greenyellow;

 transition: all 0.5s ease-out;
}

.homeTile a {
 color: inherit;
 text-decoration: inherit;

 transition: all 0.5s ease-out;

}

.homeTile:hover {
 outline: 1px solid cyan;
 box-shadow: 2px 2px 5px white;
}

.homeTile a:hover {
 color: cyan;
}

code {
 font-family: monospace;
 white-space: pre;
 background-color: rgba(255, 255, 255, 0.100);
 padding: 4px;
 outline: 1px solid white;
}



.splitter {
 padding: 0px;
 margin: 0px;
 width: 100%;
 height: 2px;
 background-color: white;

}

a, a:link, a:visited {
 color: inherit;
 text-decoration: initial;
 transition: color 200ms ease; 
 transition: text-shadow 100ms ease;
}

a:hover {
 color: cyan;
}

a:link:active {
 color: cyan;
 text-shadow: 5px 5px 15px cyan;
}

/* SRC: /static/homepage.css */
.tileBox {
 display: flex;
 justify-content: center;
 padding: 2px;

 width: 100%;

 margin-top: 16px;
}

.homeTile {
 display: flex;
 flex-direction: column;
 margin: 4px;
 padding: 4px;

 justify-content: center;
 outline: 1px solid greenyellow;

 transition: all 0.5s ease-out;
}

.homeTile a {
 color: inherit;
 text-decoration: inherit;

 transition: all 0.5s ease-out;

}

.homeTile:hover {
 outline: 1px solid cyan;
 box-shadow: 2px 2px 5px white;
}

.homeTile a:hover {
 color: cyan;
}

.Home {
 font-size: larger;
}

footer {
 display: flex;
 justify-content: space-evenly;
 padding: 0.5rem;
 font-size: small;
}

footer > a {
 margin: 0em 1em;
}

.About {
 display: flex;
 justify-content: center;
 text-align: center;
}

.About a:hover {
 color: cyan;
}

.About a {
 color: skyblue;
}


/* SRC: /static/search/search.css */
.contentBox_ {
 align-items: start;
 margin: 0.2rem
}

.header {
 font-size: x-large;
 text-align: center;
 height: min-content;
}


.searchBar {
 display: flex;
 flex-direction: column;
 margin-top: 0.2em;
 width: 100%;
 height: max-content;

 justify-content: center;
 justify-self: center;
}

.searchBar input {
 width: 90%;
 background-color: transparent;
 color: white;
 border: 1px solid white;
 border-right: 1px dotted white;

 font-family: monospace;
 font-size: large;
}

.searchBar .searchButton {
 width: 10%;
 background-color: transparent;
 border: 1px solid white;
 border-left: none;
}

.searchBar .search_entry form {
 display: flex;
 flex-direction: column;
 width: 100%;
 height: 1em;
}
.searchBar .search_entry {
 display: flex;
}
.searchBar .sortType {
 display: flex;
 font-size: medium;
}

.searchBar summary {
 margin-top: 0.5rem;
 font-size: medium;
}

.searchBar .upload_date {
 font-size: medium;
}

.searchResultsBox {
 overflow: scroll;
 outline: 2px solid white;
 padding: 0.2em;
}

.Search {
 align-items: start;
}

.contentBox_ {
 display: grid;
 flex-direction: column;
}

.searchResultsFooter {
 display: flex;
 font-size: large;
 text-align: center;
 border-top: 0.1rem solid white;
 align-items: center;
 margin-bottom: 3rem;
}

.searchResultsFooter p {
 margin: 0.5rem;
}

.searchResultsFooter a {
 margin: 1rem;
 border: 1px solid blue;
}
