| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879 |
- // 회원가입
- #registerForm {
- background: #0f0f0f;
- display: flex;
- flex-direction: column;
- align-items: center;
- justify-content: center;
- height: 100vh;
- a {
- text-decoration: none;
- }
- header {
- font-family: 'Open-Sans-Extrabold';
- font-size: 37px;
- font-weight: bolder;
- margin: 1.6rem 0;
- a {
- color: #d3d629;
- &:hover,
- &:focus {
- color: #a8aa2f;
- }
- }
- }
- main {
- max-width: 800px;
- padding: 10px;
- h5 {
- font-weight: bold;
- margin-bottom: 0.8rem;
- }
- hr {
- margin: 0.9rem 0;
- border-color: #888;
- }
- form {
- section {
- margin: 10px 0;
- blockquote {
- height: 90px;
- border: 1px solid #ddd;
- border-radius: 5px;
- overflow-y: scroll;
- padding: 10px;
- }
- div:last-child {
- a {
- color: #0066c0;
- &:hover,
- &:focus {
- color: #00558c;
- text-decoration: underline;
- }
- }
- }
- }
- }
- footer {
- text-align: center;
- font-size: 11px;
- color: #6c6c6c;
- background: transparent;
- border: 0;
- padding: 0;
- }
- }
- }
|