hensei-web/src/components/Modal/Modal.css

57 lines
No EOL
998 B
CSS

.ModalContainer {
display: flex;
align-items: center;
justify-content: center;
width: 100%;
height: 100%;
position: absolute;
left: 0;
top: 0;
}
.Modal {
background: #f5f5f5;
border-radius: 8px;
display: flex;
flex-direction: column;
height: 320px;
min-width: 360px;
max-width: 480px;
overflow: scroll;
position: relative;
z-index: 10;
}
.Modal .Input {
-webkit-font-smoothing: antialiased;
border: none;
background-color: white;
border-radius: 6px;
color: #555;
display: block;
font-size: 18px;
margin-bottom: 8px;
padding: 12px 0;
text-align: center;
}
.Modal .Button {
background: #61B3FF;
color: #315E87;
display: block;
min-height: 45px;
text-align: center;
}
.Modal .Button:hover {
background: #4B9BE5;
color: #233E56;
}
::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
color: #a9a9a9 !important;
opacity: 1; /* Firefox */
}