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.
 
 
 
 
 
 

79 linhas
1.5 KiB

  1. @import "variables.less";
  2. .underline() {
  3. text-decoration: underline;
  4. }
  5. .underline-hover() {
  6. text-decoration: underline;
  7. }
  8. /* the element that this class is applied to, should have a max width for this to work*/
  9. .text-ellipsis() {
  10. white-space: nowrap;
  11. overflow: hidden;
  12. text-overflow: ellipsis;
  13. max-width: 100%;
  14. vertical-align: middle;
  15. }
  16. .text-uppercase() {
  17. padding-bottom: 4px;
  18. text-transform: uppercase;
  19. font-size: 12px;
  20. letter-spacing: 0.4px;
  21. color: @text-muted;
  22. }
  23. .breadcrumb-divider() {
  24. font-family: FontAwesome;
  25. font-weight: normal;
  26. font-style: normal;
  27. text-decoration: inherit;
  28. -webkit-font-smoothing: antialiased;
  29. *margin-right: .3em;
  30. display: inline-block;
  31. speak: none;
  32. font-size: 24px;
  33. transition: 0.2s;
  34. position: relative;
  35. top: 3px;
  36. }
  37. .breadcrumb-divider-left() {
  38. content: "\f104";
  39. margin-right: 10px;
  40. color: @navbar-default-color;
  41. }
  42. .breadcrumb-divider-right() {
  43. content: "\f105";
  44. margin-right: 10px;
  45. color: @breadcrumb-divider-color;
  46. }
  47. // transitions
  48. .transition(@transition) {
  49. -webkit-transition: @transition;
  50. -o-transition: @transition;
  51. transition: @transition;
  52. }
  53. .transition-transform(@transition) {
  54. -webkit-transition: -webkit-transform @transition;
  55. -moz-transition: -moz-transform @transition;
  56. -o-transition: -o-transform @transition;
  57. transition: transform @transition;
  58. }
  59. .navbar-center-show() {
  60. .navbar-center {
  61. display: block !important;
  62. position: absolute;
  63. top: 10px;
  64. left: 25%;
  65. right: 25%;
  66. text-align: center;
  67. }
  68. }