Spaces:
Sleeping
Sleeping
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+KR&display=swap'); | |
:root { | |
--button-color: #ffffff; | |
--button-bg-color: #0d6efd; | |
--button-hover-bg-color: #025ce2; | |
} | |
h1, h2, h3, a { | |
text-align: center; | |
font-family: 'Noto Sans KR', sans-serif; | |
} | |
img { | |
max-width: 80%; | |
height: auto; | |
display: block; | |
margin: auto; | |
} | |
button { | |
-webkit-appearance: none; | |
-moz-appearance: none; | |
appearance: none; | |
background: var(--button-bg-color); | |
color: var(--button-color); | |
margin: auto; | |
padding: 0.5rem 1rem; | |
font-family: 'Noto Sans KR', sans-serif; | |
font-size: 1rem; | |
font-weight: 400; | |
text-align: center; | |
text-decoration: none; | |
border: none; | |
border-radius: 4px; | |
display: block; | |
width: auto; | |
box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06); | |
cursor: pointer; | |
transition: 0.5s; | |
} | |
button.success { | |
--button-bg-color: #28a745; | |
--button-hover-bg-color: #218838; | |
} | |
button.error { | |
--button-bg-color: #dc3545; | |
--button-hover-bg-color: #c82333; | |
} | |
button.warning { | |
--button-color: #212529; | |
--button-bg-color: #ffc107; | |
--button-hover-bg-color: #e0a800; | |
} | |
button:active, | |
button:hover, | |
button:focus { | |
background: var(--button-hover-bg-color); | |
outline: 0; | |
} | |
button:disabled { | |
opacity: 0.5; | |
} | |
form { | |
display: flex; | |
justify-content: space-evenly; | |
align-items: center; | |
} | |
body { | |
margin: 0; | |
background: #eee; | |
} | |
.centerwrapper{ | |
text-align: center; | |
} |