express-gateway
Version:
A microservices API gateway built on top of ExpressJS
66 lines (56 loc) • 982 B
CSS
.main-container {
font-family: “Helvetica Neue”, Helvetica, Open Sans, Lato, “Univers”, Arial,
sans-serif;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
font-size: 18px;
width: 100vw;
height: 100vh;
}
img {
max-width: 400px;
max-height: 150px;
}
.form-row {
margin: 1rem;
}
.button-container {
display: flex;
align-items: center;
justify-content: center;
}
form {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
border-radius: 5px;
box-shadow: 10px 10px 25px rgba(0, 0, 0, 0.281);
}
.login-form {
max-height: 250px;
max-width: 400px;
}
.dialog-form {
height: 400px;
width: 600px;
}
input {
width: 200px;
height: 28px;
font-size: 18px;
}
button {
background-color: #34a8c3;
border: none;
color: white;
padding: 10px 32px;
font-size: 18px;
width: 150px;
}
button:hover {
background-color: #0c6c7b;
cursor: pointer;
}