reset.scss 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  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, section, header, main, footer{
  8. padding:0px;
  9. margin:0px;
  10. list-style: none;
  11. box-sizing: border-box;
  12. text-decoration: none;
  13. color: #191919;
  14. }
  15. body{
  16. height:100%;
  17. }
  18. .hidden{
  19. display: none!important;
  20. }
  21. .text-center{
  22. text-align: center!important;
  23. }
  24. .text-left{
  25. text-align: left!important;
  26. }
  27. .text-right{
  28. text-align: right!important ;
  29. }
  30. // 변수 : S
  31. $wirdh-full: 100%;
  32. $w-1200: 1200px;
  33. $translate-center-x: translateX(-50%);
  34. $translate-center-y: translateY(-50%);
  35. $trasnlate-center: translate(-50%, -50%);
  36. $transition-default: all linear 0.3s;
  37. // 변수 : E
  38. //패딩 : 180까지
  39. @for $i from 0 through 500 {
  40. .pt--#{$i} {
  41. padding-top: #{$i}px !important;
  42. }
  43. }
  44. @for $i from 0 through 500 {
  45. .pb--#{$i} {
  46. padding-bottom: #{$i}px !important;
  47. }
  48. }
  49. @for $i from 0 through 500 {
  50. .pl--#{$i} {
  51. padding-left: #{$i}px !important;
  52. }
  53. }
  54. @for $i from 0 through 500 {
  55. .pr--#{$i} {
  56. padding-right: #{$i}px !important;
  57. }
  58. }
  59. //마진 : 180까지
  60. @for $i from 0 through 500 {
  61. .mt--#{$i} {
  62. margin-top: #{$i}px !important;
  63. }
  64. }
  65. @for $i from 0 through 500 {
  66. .mb--#{$i} {
  67. margin-bottom: #{$i}px !important;
  68. }
  69. }
  70. @for $i from 0 through 500 {
  71. .ml--#{$i} {
  72. margin-left: #{$i}px !important;
  73. }
  74. }
  75. @for $i from 0 through 500 {
  76. .mr--#{$i} {
  77. margin-right: #{$i}px !important;
  78. }
  79. }