123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263 |
- .lighter { font-weight: lighter; }
- .bolder { font-weight: bolder; }
- .inline { display: inline-block !important; }
- .block { display: block !important; }
- .center , .align-center{ text-align: center !important; }
- .align-left { text-align: left !important; }
- .align-right { text-align: right !important; }
- .middle { vertical-align: middle; }
- .align-middle { vertical-align: middle !important; }
- .align-top { vertical-align: top !important; }
- .align-bottom { vertical-align: bottom !important; }
- .position-relative, .pos-rel { position: relative; }
- .position-absolute, .pos-abs { position: absolute; }
- .no-float { float: none !important; }
- .line-height-normal { line-height: normal !important; }
- .line-height-0 { line-height: 0 !important; }
- .line-height-1 { line-height: 1 !important; }
- .line-height-125 { line-height: 1.25 !important; }
- .line-height-150 { line-height: 1.5 !important; }
- .dark { color: @ace-dark !important; }
- .white { color: @ace-white !important; }
- .red { color: @ace-red !important; }
- .red2 { color: @ace-red2 !important; }
- .light-red { color: @ace-light-red !important; }
- .blue { color: @ace-blue !important; }
- .light-blue { color: @ace-light-blue !important; }
- .green { color: @ace-green !important; }
- .light-green { color: @ace-light-green !important;}
- .orange { color: @ace-orange !important; }
- .orange2 { color: @ace-orange2 !important; }
- .light-orange {color: @ace-light-orange !important;}
- .purple { color: @ace-purple !important; }
- .pink { color: @ace-pink !important; }
- .pink2 { color: @ace-pink2 !important; }
- .brown { color: @ace-brown !important; }
- .grey { color: @ace-grey !important; }
- .light-grey { color: @ace-light-grey !important; }
- .biggerX (@index) when (@index < 310) {
- .bigger-@{index} { font-size: unit(@index,~"%") !important; }
- .biggerX(@index + 10);
- }
- .biggerX(110);
- .bigger-115 { font-size: 115% !important;}
- .bigger-125 { font-size: 125% !important;}
- .bigger-175 { font-size: 175% !important; }
- .bigger-225 { font-size: 225% !important; }
- .bigger-275 { font-size: 275% !important; }
- .smallerX (@index) when (@index > 10) {
- .smaller-@{index} { font-size: unit(@index,~"%") !important; }
- .smallerX(@index - 10);
- }
- .smallerX(90);
- .smaller-75 { font-size: 75% !important;}
- .widthX (@index) when (@index < 105) {
- .width-@{index} { width: unit(@index,~"%") !important; }
- .widthX(@index + 5);
- }
- .widthX(20);
- .width-75 { width: 75% !important;}
- .width-25 { width: 25% !important;}
- .width-auto { width: auto !important; }
- .height-auto { height: auto !important; }
- .no-padding { padding: 0 !important; }
- .no-padding-bottom { padding-bottom: 0 !important; }
- .no-padding-top { padding-top: 0 !important; }
- .no-padding-left { padding-left: 0 !important; }
- .no-padding-right { padding-right: 0 !important; }
- .no-margin { margin: 0 !important; }
- .no-margin-bottom { margin-bottom: 0 !important; }
- .no-margin-top { margin-top: 0 !important; }
- .no-margin-left { margin-left: 0 !important; }
- .no-margin-right { margin-right: 0 !important; }
- .no-border { border-width: 0; }
- .no-border-bottom { border-bottom-width: 0; }
- .no-border-top { border-top-width: 0; }
- .no-border-left { border-left-width: 0; }
- .no-border-right { border-right-width: 0; }
- /**
- .no-underline {
- text-decoration: none !important;
- }
- .no-hover-underline:hover {
- text-decoration: none !important;
- }
- .no-outline:focus {
- outline: none !important;
- }
- .no-box-shadow {
- .box-shadow(none) !important;
- }
- .overflow-auto {overflow: auto !important;}
- .overflow-visible {overflow: visible !important;}
- */
- .overflow-hidden {overflow: hidden !important;}
- .overflow-scroll {overflow-x: hidden !important; overflow-y: scroll !important;}
- .no-radius {
- .border-radius(0) !important;
- }
- .no-text-shadow {
- text-shadow:none !important;
- }
- //<hr /> like spacing by using div, e.g <div class="hr hr-32"></div>
- .hr {
- display:block;
- height: 0;
- overflow: hidden;
- font-size: 0;
- border-width: 1px 0 0 0;
- border-top: 1px solid #E3E3E3;
- margin: 12px 0;
- border-top-color: rgba(0,0,0,0.11);
- }
- .hr-double {
- height: 3px;
- border-top: 1px solid #E3E3E3;
- border-bottom: 1px solid #E3E3E3;
-
- border-top-color: rgba(0,0,0,0.11);
- border-bottom-color: rgba(0,0,0,0.11);
- }
- .hr.dotted, .hr-dotted { border-style: dotted;}
- .hrX (@index) when (@index > 0) {
- .hr-@{index}, .hr@{index} { margin:unit(@index,px) 0; }
- .hrX(@index - 2);
- }
- .hrX(32);
- //some spacing classes, use like <div class="space-24"></div>
- .space() {
- max-height: 1px;
- min-height: 1px;
- overflow: hidden;
- }
- .space { .space(); margin: 12px 0; }
- [class*="vspace-"] { display: none;} //visible only on smaller devices where columns are stacked on top of each other
- .spaceX (@index) when (@index > 0) {
- .space-@{index} { .space(); margin: unit(@index,px) 0 unit(@index - 1,px); }
- [class*="vspace-@{index}"]
- {
- .space();
- margin:unit(@index,px) 0 unit(@index - 1,px) 0;
- }
- .spaceX(@index - 2);
- }
- .spaceX(32);//produce spaces
- .space-0 , [class*="vspace-0"] { .space(); margin: 0; }
- @media only screen and (max-width: @screen-tiny-max) {
- [class*="vspace-"][class*="-xs"] {
- display: block;
- }
- }
- @media only screen and (max-width: @screen-xs-max) {
- [class*="vspace-"][class*="-sm"] {
- display: block;
- }
- }
- @media only screen and (max-width: @screen-sm-max) {
- [class*="vspace-"][class*="-md"] {
- display: block;
- }
- }
- @media only screen and (max-width: @screen-md-max) {
- [class*="vspace-"][class*="-lg"] {
- display: block;
- }
- }
- //headers
- .header {
- line-height: 28px;
- margin-bottom: 16px;
- margin-top: 18px;
- padding-bottom: 4px;
- border-bottom: 1px solid #CCC;
-
- &.blue {
- border-bottom-color: desaturate(lighten(@ace-blue, 35%), 10%);
- }
- &.green {
- border-bottom-color: desaturate(lighten(@ace-green, 35%), 6%);
- }
- &.purple {
- border-bottom-color: desaturate(lighten(@ace-purple, 28%), 5%);
- }
- &.orange {
- border-bottom-color: desaturate(lighten(@ace-orange, 25%), 5%);
- }
- &.orange2 {
- border-bottom-color: desaturate(lighten(@ace-orange2, 20%), 5%);
- }
- &.red {
- border-bottom-color: desaturate(lighten(@ace-red, 30%), 5%);
- }
- &.grey {
- border-bottom-color: desaturate(lighten(@ace-grey, 30%), 5%);
- }
- &.pink {
- border-bottom-color: desaturate(lighten(@ace-pink, 32%), 5%);
- }
- &.pink2 {
- border-bottom-color: desaturate(lighten(@ace-pink2, 20%), 5%);
- }
- &.light-blue {
- border-bottom-color: desaturate(lighten(@ace-light-blue, 15%), 5%);
- }
- &.light-red {
- border-bottom-color: desaturate(lighten(@ace-light-red, 15%), 5%);
- }
- &.light-green {
- border-bottom-color: desaturate(lighten(@ace-light-green, 15%), 5%);
- }
- &.brown {
- border-bottom-color: desaturate(lighten(@ace-brown, 32%), 5%);
- }
- > .@{icon} {
- margin-right: 2px;
- }
- }
- .action-buttons a {
- margin: 0 3px;
- display: inline-block;
- opacity: 0.85;
- .transition(~"all 0.1s");
- &:hover {
- text-decoration: none;
- opacity: 1;
- .transform(~"scale(1.2)");
- }
- }
|