12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970 |
- @media screen and (min-width: 1280px) {
- .md-main-content {
- margin-left: 10px;
- }
- }
-
- .md-ui-content {
- padding-top: 10px;
- padding-left: 10px;
- }
-
- .text-center() {
- text-align: center;
- }
-
- .border-radius(@radius) {
- -webkit-border-radius: @radius;
- -moz-border-radius: @radius;
- border-radius: @radius;
- }
-
- .no-text-select {
- -webkit-touch-callout: none;
- -webkit-user-select: none;
- -khtml-user-select: none;
- -moz-user-select: none;
- -ms-user-select: none;
- user-select: none;
- }
-
- /**
- ========================================================
- **/
-
- .error-message {
- color: red;
- font-weight: bold;
- }
-
- .strike {
- text-decoration: line-through;
- }
-
- @dropzone-min-size: 150px;
-
- @dropzone-max-size: 500px;
-
- .dropzone {
- min-width: @dropzone-min-size;
- min-height: @dropzone-min-size;
- max-height: @dropzone-max-size + 2;
- max-width: @dropzone-max-size + 2;
- border: 1px solid #6e6e6e;
- display: flex;
- justify-content: center;
- align-items: center;
- img {
- display: block;
- max-width: @dropzone-max-size;
- max-height: @dropzone-max-size;
- width: auto;
- height: auto;
- }
- }
-
- .hidden-input {
- width: 0;
- height: 0;
- overflow: hidden;
- }
|