verify.scss 1.0 KB

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