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.

app.less 1.2KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  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 {
  38. min-width: @dropzone-min-size;
  39. min-height: @dropzone-min-size;
  40. border: 1px solid #6e6e6e;
  41. display: flex;
  42. justify-content: center;
  43. align-items: center;
  44. img {
  45. display: block;
  46. max-width: 100%;
  47. max-height: 100%;
  48. width: auto;
  49. height: auto;
  50. }
  51. }
  52. .hidden-input {
  53. width: 0;
  54. height: 0;
  55. overflow: hidden;
  56. }
  57. .nav {
  58. li {
  59. a:hover, a:focus {
  60. text-decoration: none;
  61. background-color: #303F9F;
  62. }
  63. }
  64. }
  65. .active {
  66. text-decoration: none;
  67. background-color: #1A237E;
  68. }