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.5KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  1. footer {
  2. margin: 50px 0;
  3. }
  4. .text-center() {
  5. text-align: center;
  6. }
  7. .border-radius(@radius) {
  8. -webkit-border-radius: @radius;
  9. -moz-border-radius: @radius;
  10. border-radius: @radius;
  11. }
  12. .no-text-select {
  13. -webkit-touch-callout: none;
  14. -webkit-user-select: none;
  15. -khtml-user-select: none;
  16. -moz-user-select: none;
  17. -ms-user-select: none;
  18. user-select: none;
  19. }
  20. /**
  21. ========================================================
  22. **/
  23. .md-group-button {
  24. margin: 0;
  25. padding: 0;
  26. min-height: 0;
  27. line-height: 30px;
  28. }
  29. .md-group-button-checked {
  30. background-color: rgba(0, 0, 0, 0.12);
  31. }
  32. .md-sidebar {
  33. height: 100%;
  34. min-height: 150px;
  35. }
  36. .md-main-content {
  37. margin-left: 5px;
  38. }
  39. .welcome-message {
  40. font-size: large;
  41. }
  42. @media (min-width: 768px){
  43. .seven-cols .col-xs-1,
  44. .seven-cols .col-sm-1,
  45. .seven-cols .col-md-1,
  46. .seven-cols .col-sm-1,
  47. .seven-cols .col-lg-1 {
  48. width: 100%;
  49. *width: 100%;
  50. }
  51. }
  52. @media (min-width: 992px) {
  53. .seven-cols .col-xs-1,
  54. .seven-cols .col-sm-1,
  55. .seven-cols .col-md-1,
  56. .seven-cols .col-sm-1,
  57. .seven-cols .col-lg-1 {
  58. width: 14.285714285714285714285714285714%;
  59. *width: 14.285714285714285714285714285714%;
  60. }
  61. }
  62. /**
  63. * The following is not really needed in this case
  64. * Only to demonstrate the usage of @media for large screens
  65. */
  66. @media (min-width: 1200px) {
  67. .seven-cols .col-xs-1,
  68. .seven-cols .col-sm-1,
  69. .seven-cols .col-md-1,
  70. .seven-cols .col-sm-1,
  71. .seven-cols .col-lg-1 {
  72. width: 14.285714285714285714285714285714%;
  73. *width: 14.285714285714285714285714285714%;
  74. }
  75. }