You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

49 lines
881 B

  1. .ellipsis { text-overflow:ellipsis; white-space:nowrap; word-wrap:normal; overflow:hidden; }
  2. .admin-help-wrap {
  3. width:700px; margin:0 auto;
  4. li > img {width:700px;}
  5. .point-color {color:#e60035}
  6. }
  7. /* 높이/너비/마진/패딩 */
  8. @for $i from 1 to 100 {
  9. .H#{$i * 5} {
  10. height: 5px * $i !important;
  11. }
  12. }
  13. @for $i from 1 to 100{
  14. .W#{$i * 5} {
  15. width: 5px * $i !important;
  16. }
  17. }
  18. @for $i from 1 to 10 {
  19. .M#{$i * 5} {
  20. margin:5px * $i;
  21. }
  22. .MT#{$i * 5} {
  23. margin-top:5px * $i;
  24. }
  25. .MR#{$i*5} {
  26. margin-right:5px * $i;
  27. }
  28. .MB#{$i * 5} {
  29. margin-bottom:5px * $i;
  30. }
  31. .ML#{$i * 5} {
  32. margin-left:5px * $i;
  33. }
  34. .PT#{$i * 5} {
  35. padding-top:5px * $i;
  36. }
  37. .PR#{$i * 5} {
  38. padding-right:5px * $i;
  39. }
  40. .PB#{$i * 5} {
  41. padding-bottom:5px * $i;
  42. }
  43. .PL#{$i * 5} {
  44. padding-left:5px * $i;
  45. }
  46. .P#{$i * 5} {
  47. padding:5px * $i;
  48. }
  49. }