verify.scss 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. // 이메일 주소 확인
  2. #verifyForm {
  3. display: flex;
  4. flex-direction: column;
  5. align-items: center;
  6. justify-content: center;
  7. height: 100vh;
  8. background: #000;
  9. a {
  10. text-decoration: none;
  11. }
  12. header {
  13. font-family: 'Open-Sans-Extrabold';
  14. font-size: 37px;
  15. font-weight: bolder;
  16. margin-bottom: 0.7rem;
  17. a {
  18. color: #d3d629;
  19. &:hover,
  20. &:focus {
  21. color: #a8aa2f;
  22. }
  23. }
  24. }
  25. main {
  26. border-radius: 4px;
  27. padding: 20px;
  28. border: 1px solid #2f2f2f;
  29. background: #191919;
  30. h5 {
  31. font-weight: bold;
  32. margin-bottom: 0.9rem;
  33. }
  34. div:last-child {
  35. a {
  36. color: #0066c0;
  37. &:hover,
  38. &:focus {
  39. color: #00558c;
  40. text-decoration: underline;
  41. }
  42. }
  43. }
  44. hr {
  45. margin: 0.5rem 0;
  46. border-color: #888;
  47. }
  48. footer {
  49. text-align: center;
  50. font-size: 11px;
  51. padding-top: 12px;
  52. color: #6c6c6c;
  53. }
  54. }
  55. }