Spaces:
Sleeping
Sleeping
File size: 1,484 Bytes
8a6df40 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 |
@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;
} |