Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. @media screen and (min-width: 1280px) {
  2. .md-main-content {
  3. margin-left: 10px;
  4. }
  5. }
  6. .md-ui-content {
  7. padding-top: 10px;
  8. padding-left: 10px;
  9. }
  10. .text-center() {
  11. text-align: center;
  12. }
  13. .border-radius(@radius) {
  14. -webkit-border-radius: @radius;
  15. -moz-border-radius: @radius;
  16. border-radius: @radius;
  17. }
  18. .no-text-select {
  19. -webkit-touch-callout: none;
  20. -webkit-user-select: none;
  21. -khtml-user-select: none;
  22. -moz-user-select: none;
  23. -ms-user-select: none;
  24. user-select: none;
  25. }
  26. /**
  27. ========================================================
  28. **/
  29. .error-message {
  30. color: red;
  31. font-weight: bold;
  32. }
  33. .strike {
  34. text-decoration: line-through;
  35. }
  36. @dropzone-min-size: 150px;
  37. @dropzone-max-size: 500px;
  38. .dropzone {
  39. min-width: @dropzone-min-size;
  40. min-height: @dropzone-min-size;
  41. max-height: @dropzone-max-size + 2;
  42. max-width: @dropzone-max-size + 2;
  43. border: 1px solid #6e6e6e;
  44. display: flex;
  45. justify-content: center;
  46. align-items: center;
  47. img {
  48. display: block;
  49. max-width: @dropzone-max-size;
  50. max-height: @dropzone-max-size;
  51. width: auto;
  52. height: auto;
  53. }
  54. }
  55. .hidden-input {
  56. width: 0;
  57. height: 0;
  58. overflow: hidden;
  59. }