Website-Finder/Webpage/index.css

136 lines
1.7 KiB
CSS
Raw 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;
}
label {
color: black;
}
#btn {
2023-03-07 14:40:49 +01:00
padding: 40px;
margin: 10px;
font-size: 50px;
}
@media screen and (max-width: 700px) {
#btn {
font-size: 4.5vw;
}
}
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
}
#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 {
width: 0;
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;
}
#list a {
color: white;
}
#list a:visited {
color: grey;
}
2023-03-07 14:40:49 +01:00
li {
list-style: none;
font-size: 20px;
margin: 10px;
}
/* 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;
}