Skip to content

Instantly share code, notes, and snippets.

@betiol
Created May 21, 2020 20:01
Show Gist options
  • Save betiol/f826eea2c41c40f978c72e05bf178619 to your computer and use it in GitHub Desktop.
Save betiol/f826eea2c41c40f978c72e05bf178619 to your computer and use it in GitHub Desktop.
.App {
background-color: #282c34;
display: flex;
justify-content: center;
height: 100vh;
align-items: center;
}
.login-button {
width: 200px;
height: 60px;
border: none;
border-radius: 5px;
color: white;
background-color: #ea4335;
font-size: 18px;
font-weight: bold;
cursor: pointer;
opacity: 0.8;
}
.login-button:hover {
opacity: 1;
}
.booklist {
display: flex;
flex-direction: row;
align-items: center;
margin-bottom: 10px;
}
.image {
width: 100px;
height: 150px;
}
h3,
h1 {
color: white;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment