Website-Finder/Javascript/index.css

48 lines
464 B
CSS
Raw Normal View History

* {
text-align: center;
2020-12-11 01:56:50 +01:00
font-family: sans-serif;
}
body {
display: flex;
}
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%;
}
#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;
}