| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465 |
- // 이메일 주소 확인
- #verifyForm {
- display: flex;
- flex-direction: column;
- align-items: center;
- justify-content: center;
- height: 100vh;
- background: #000;
- a {
- text-decoration: none;
- }
- header {
- font-family: 'Open-Sans-Extrabold';
- font-size: 37px;
- font-weight: bolder;
- margin-bottom: 0.7rem;
- a {
- color: #d3d629;
- &:hover,
- &:focus {
- color: #a8aa2f;
- }
- }
- }
- main {
- border-radius: 4px;
- padding: 20px;
- border: 1px solid #2f2f2f;
- background: #191919;
- h5 {
- font-weight: bold;
- margin-bottom: 0.9rem;
- }
- div:last-child {
- a {
- color: #0066c0;
- &:hover,
- &:focus {
- color: #00558c;
- text-decoration: underline;
- }
- }
- }
- hr {
- margin: 0.5rem 0;
- border-color: #888;
- }
- footer {
- text-align: center;
- font-size: 11px;
- padding-top: 12px;
- color: #6c6c6c;
- }
- }
- }
|