79 lines
1.0 KiB
CSS
79 lines
1.0 KiB
CSS
|
html {
|
||
|
background-color: black;
|
||
|
color: white;
|
||
|
padding: 0;
|
||
|
margin: 0;
|
||
|
font-family: Arial, Helvetica, sans-serif;
|
||
|
}
|
||
|
body {
|
||
|
padding: 0;
|
||
|
margin: 0;
|
||
|
}
|
||
|
|
||
|
a, a:visited {
|
||
|
color: inherit;
|
||
|
}
|
||
|
|
||
|
.search-area {
|
||
|
text-align: center;
|
||
|
}
|
||
|
|
||
|
.result {
|
||
|
width: 80ch;
|
||
|
min-width: 80ch;
|
||
|
height: 75ch;
|
||
|
overflow-y: auto;
|
||
|
border-style: solid;
|
||
|
border-color: #707070;
|
||
|
border-width: 5px;
|
||
|
}
|
||
|
|
||
|
.line-item {
|
||
|
padding: 10px;
|
||
|
background-color: #505050;
|
||
|
}
|
||
|
|
||
|
.line-item:nth-child(odd) {
|
||
|
background-color: #707070;
|
||
|
}
|
||
|
.carousel {
|
||
|
display: flex;
|
||
|
overflow-x: auto;
|
||
|
background-color: #050505;
|
||
|
}
|
||
|
|
||
|
h1 {
|
||
|
font-size: 3rem;
|
||
|
margin: 10px;
|
||
|
}
|
||
|
|
||
|
h2 {
|
||
|
font-size: 2rem;
|
||
|
}
|
||
|
|
||
|
h3 {
|
||
|
text-align: center;
|
||
|
font-size: 2rem;
|
||
|
margin: 10px;
|
||
|
}
|
||
|
|
||
|
form {
|
||
|
font-size: 2rem;
|
||
|
}
|
||
|
input {
|
||
|
font-size: inherit;
|
||
|
}
|
||
|
button {
|
||
|
font-size: inherit;
|
||
|
background-color: inherit;
|
||
|
color: inherit;
|
||
|
border-width: 0;
|
||
|
transition: 200ms;
|
||
|
}
|
||
|
|
||
|
button:hover {
|
||
|
transition: 200ms;
|
||
|
background-color: white;
|
||
|
color: black;
|
||
|
}
|