Skip to content
Permalink
4ed1575daa
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
70 lines (65 sloc) 997 Bytes
.container, #menu {
display:flex;
flex-direction: column;
align-items: center;
}
html{
background-color: black;
}
#matches {
display: none;
}
#error {
color: red;
visibility:hidden;
}
#error2 {
color: red;
display: none;
padding-left: 3em;
}
#matches, #login {
color: whitesmoke;
}
#menu {
background-color:burlywood;
padding: 1em;
padding-top: 2em;
border-radius: 1em;
position: absolute;
top: 32%;
}
#results {
background-color: grey;
display: none;
display: flex;
flex-wrap: wrap;
justify-content: center;
}
#line {
width: 3em;
}
#profile {
display: flex;
align-items: center;
flex-direction: column;
margin: 1em;
}
#login {
margin-bottom: 0;
}
a {
text-decoration: none;
}
#login:hover {
background-color:rgb(255, 252, 240);
color: black;
}
#img:hover {
box-shadow: 10px 10px 5px;
}
#footer {
color: white;
display: flex;
justify-content: center;
}