Website-Finder/Webpage/index.css

139 lines
1.8 KiB
CSS
Raw Permalink Normal View History

2023-03-07 14:40:49 +01:00
* {
text-align: center;
font-family: 'Gugi', sans-serif;
}
body {
background-color: #112034;
color: white;
overflow-x: hidden;
2023-03-07 14:40:49 +01:00
}
#presentation {
background-color: #080833;
border-bottom: 1px solid #888;
padding-top: 5px;
margin-bottom: 20px;
}
#presentation p {
margin-bottom: 0;
}
#presentation a {
color: white;
}
#presentation a:hover {
color: greenyellow;
line-height: 1em;
}
2023-03-08 01:48:47 +01:00
#finder label {
color: dimgrey;
left: 5px;
2023-03-07 14:40:49 +01:00
}
#finder, #status {
border: solid 1px;
border-collapse: collapse;
width: 80vw;
margin-left: auto;
margin-right: auto;
}
#finder {
background-color: #00000075;
margin-bottom: 20px;
padding: 20px;
}
#finder .row {
margin: 15px;
2023-03-07 14:40:49 +01:00
}
2023-03-08 01:48:47 +01:00
#search_btn {
padding: 40px;
margin: 10px;
font-size: 50px;
}
@media screen and (max-width: 700px) {
#search_btn {
font-size: 4.5vw;
}
}
2023-03-07 14:40:49 +01:00
#status {
background-color: #030715a3;
overflow-x: hidden;
2023-03-07 14:40:49 +01:00
}
#status > * {
margin: 20px
}
#progress {
width: 200px;
}
#progress > * {
text-align: left;
}
#log_checking {
line-break: anywhere
2023-03-07 14:40:49 +01:00
}
2023-03-08 01:48:47 +01:00
/* https://stackoverflow.com/a/23635565 */
@-webkit-keyframes borderBlink {
from, to {
border-color: transparent
}
50% {
border-color: white
}
}
@keyframes borderBlink {
from, to {
border-color: transparent
}
50% {
border-color: white
}
}
.in_progress {
border-left: 5px solid;
-webkit-animation: borderBlink 2s step-end infinite;
animation: borderBlink 2s step-end infinite;
}
2023-03-07 14:40:49 +01:00
#list {
flex: auto;
width: 600px;
height: 50vh;
2023-03-07 14:40:49 +01:00
overflow-x: hidden;
overflow-y: auto;
background-color: #0000006e;
2023-03-07 14:40:49 +01:00
border: solid 1px;
}
#actual_list {
2023-03-07 14:40:49 +01:00
padding: 0px;
}
2023-03-08 01:48:47 +01:00
#actual_list a {
color: white;
}
2023-03-08 01:48:47 +01:00
#actual_list a:visited {
color: grey;
}
2023-03-08 01:48:47 +01:00
#actual_list li {
2023-03-07 14:40:49 +01:00
list-style: none;
font-size: 20px;
margin: 10px;
}