Website-Finder/Javascript/index.css

56 lines
535 B
CSS
Raw Normal View History

* {
text-align: center;
2020-12-11 01:56:50 +01:00
font-family: sans-serif;
}
body {
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 {
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;
}
ul {
padding: 0px;
}
li {
list-style: none;
font-size: 20px;
margin: 10px;
}
a:link {
color: white;
}
a:visited {
color: gray;
}