Website-Finder/Javascript/index.css

60 lines
623 B
CSS
Raw Normal View History

* {
text-align: center;
2020-12-11 01:56:50 +01:00
font-family: sans-serif;
}
body {
background-color: #112034;
color: white;
2020-12-11 01:56:50 +01:00
display: flex;
}
2020-12-11 18:44:24 +01:00
input[type="button"] {
padding: 40px;
2020-12-11 01:56:50 +01:00
margin: 10px;
font-size: 50px;
}
2020-12-11 01:56:50 +01:00
#rest {
background-color: #000;
2020-12-11 01:56:50 +01:00
width: 40%;
border: solid 1px;
margin-right: 10%;
}
2020-12-11 18:44:24 +01:00
form {
display: grid;
}
form * {
margin: 2px 20px;
}
#list {
2020-12-11 01:56:50 +01:00
flex: auto;
width: 600px;
height: 500px;
overflow-x: hidden;
overflow-y: auto;
background-color: black;
border: solid 1px;
}
ul {
padding: 0px;
}
li {
list-style: none;
font-size: 20px;
margin: 10px;
}
a:link {
color: white;
}
a:visited {
color: gray;
}