Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

app.less 1.6KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  1. body {
  2. padding-top: 70px;
  3. }
  4. footer {
  5. margin: 50px 0;
  6. }
  7. .text-center() {
  8. text-align: center;
  9. }
  10. .border-bottom-right-radius(@radius) {
  11. -webkit-border-bottom-right-radius: @radius;
  12. -moz-border-radius-bottomright: @radius;
  13. border-bottom-right-radius: @radius;
  14. }
  15. .border-bottom-left-radius(@radius) {
  16. -webkit-border-bottom-left-radius: @radius;
  17. -moz-border-radius-bottomleft: @radius;
  18. border-bottom-left-radius: @radius;
  19. }
  20. .border-bottom-radius(@radius) {
  21. .border-bottom-right-radius(@radius);
  22. .border-bottom-left-radius(@radius);
  23. }
  24. .border-radius(@radius) {
  25. -webkit-border-radius: @radius;
  26. -moz-border-radius: @radius;
  27. border-radius: @radius;
  28. }
  29. .no-text-select {
  30. -webkit-touch-callout: none;
  31. -webkit-user-select: none;
  32. -khtml-user-select: none;
  33. -moz-user-select: none;
  34. -ms-user-select: none;
  35. user-select: none;
  36. }
  37. /**
  38. ========================================================
  39. **/
  40. .navbar-brand {
  41. padding-right: 42px;
  42. }
  43. /**
  44. ========================================================
  45. **/
  46. @player-bg-color: #2f4154;
  47. @player-text-color: white;
  48. @player-border-radius: 8px;
  49. .player {
  50. margin-bottom: 36px;
  51. }
  52. .player-image {
  53. width: 100%;
  54. }
  55. .player-image-wrapper {
  56. padding: 0;
  57. }
  58. .player-legend {
  59. background-color: @player-bg-color;
  60. color: @player-text-color;
  61. padding-left: @player-border-radius;
  62. .border-bottom-radius(@player-border-radius);
  63. }
  64. .player-button-play {
  65. padding: 5px;
  66. cursor: pointer;
  67. .no-text-select();
  68. &:hover {
  69. color: #1abc9c;
  70. }
  71. }
  72. .player-legend-name {
  73. }
  74. .cameras-filter-input {
  75. margin-bottom: 24px;
  76. }