utilities.less 895 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. // Utility classes
  2. // --------------------------------------------------
  3. .clickable {
  4. cursor: pointer;
  5. }
  6. .profile-header {
  7. overflow: auto;
  8. border-bottom: none;
  9. margin-bottom: @baseLineHeight * 1.5;
  10. .avatar-height {
  11. overflow: auto;
  12. .avatar {
  13. .border-radius(6px);
  14. margin-right: 24px;
  15. width: 125px;
  16. height: 125px;
  17. }
  18. h1 {
  19. font-size: 300%;
  20. }
  21. .lead {
  22. color: @gray;
  23. .muted {
  24. color: lighten(@gray, 25%);
  25. }
  26. }
  27. }
  28. .nav-tabs {
  29. margin-top: -22px;
  30. margin-bottom: 0px;
  31. padding-left: 142px;
  32. }
  33. }
  34. .avatar-menu {
  35. h3 {
  36. margin-top: 0px;
  37. }
  38. }
  39. .board-team {
  40. font-weight: bold;
  41. a:link, a:active, a:visited, a:hover {
  42. color: @textColor;
  43. font-size: 130%;
  44. }
  45. }
  46. .board-stat {
  47. font-size: 180%;
  48. small {
  49. color: @grayLight;
  50. font-size: 70%;
  51. }
  52. }