| 1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- // 회원가입
- #registerForm {
- 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-bottom: 0.7rem;
- a {color: #333;}
- }
- main {
- border: 1px solid #dadada;
- border-radius: 4px;
- padding: 20px;
- background: #fff;
- h5 {font-weight: bold;margin-bottom: 0.9rem;}
- div:last-child {
- a {
- color: #0066c0;
- &:hover,
- &:focus {
- color: #c45500;
- text-decoration: underline;
- }
- }
- }
- hr {margin: 0.5rem 0;background-color: #dadada;}
- footer {text-align: center;font-size: 11px;padding-top: 12px;}
- }
- }
|