reset.scss 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  1. @charset "UTF-8";
  2. @import url("https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.9/dist/web/static/pretendard.min.css");
  3. *{
  4. font-family: "Pretendard Variable", Pretendard, -apple-system, BlinkMacSystemFont, system-ui, Roboto, "Helvetica Neue", "Segoe UI", "Apple SD Gothic Neo", "Noto Sans KR", "Malgun Gothic", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", sans-serif;
  5. color: #191919;
  6. }
  7. div, ol, ul , li , a , p , h1 , h2 , h3, h4 ,h5, h6, span, strong, section, header, main, footer, dl, dt, dd{
  8. padding:0px;
  9. margin:0px;
  10. list-style: none;
  11. box-sizing: border-box;
  12. text-decoration: none;
  13. color: #191919;
  14. word-break: keep-all;
  15. }
  16. body{
  17. height:100%;
  18. }
  19. .hidden{
  20. display: none!important;
  21. }
  22. .text-center{
  23. text-align: center!important;
  24. }
  25. .text-left{
  26. text-align: left!important;
  27. }
  28. .text-right{
  29. text-align: right!important ;
  30. }
  31. // 변수 : S
  32. $wirdh-full: 100%;
  33. $w-1200: 1200px;
  34. $translate-center-x: translateX(-50%);
  35. $translate-center-y: translateY(-50%);
  36. $trasnlate-center: translate(-50%, -50%);
  37. $transition-default: all linear 0.3s;
  38. // 변수 : E
  39. //패딩 : 180까지
  40. @for $i from 0 through 500 {
  41. .pt--#{$i} {
  42. padding-top: #{$i}px !important;
  43. }
  44. }
  45. @for $i from 0 through 500 {
  46. .pb--#{$i} {
  47. padding-bottom: #{$i}px !important;
  48. }
  49. }
  50. @for $i from 0 through 500 {
  51. .pl--#{$i} {
  52. padding-left: #{$i}px !important;
  53. }
  54. }
  55. @for $i from 0 through 500 {
  56. .pr--#{$i} {
  57. padding-right: #{$i}px !important;
  58. }
  59. }
  60. //마진 : 180까지
  61. @for $i from 0 through 500 {
  62. .mt--#{$i} {
  63. margin-top: #{$i}px !important;
  64. }
  65. }
  66. @for $i from 0 through 500 {
  67. .mb--#{$i} {
  68. margin-bottom: #{$i}px !important;
  69. }
  70. }
  71. @for $i from 0 through 500 {
  72. .ml--#{$i} {
  73. margin-left: #{$i}px !important;
  74. }
  75. }
  76. @for $i from 0 through 500 {
  77. .mr--#{$i} {
  78. margin-right: #{$i}px !important;
  79. }
  80. }