source: prototipo_portal_2018/prototipo/static/less/mixins.less @ c3a6b20

Last change on this file since c3a6b20 was 747e744, checked in by Antonio Araujo <aaraujo@…>, 7 years ago

Creado directorio prototipo con fuentes de la modificación del portal para establecer la ubicación de la firma visible

  • Property mode set to 100644
File size: 442 bytes
Line 
1// Mixins
2
3.transition-all() {
4    -webkit-transition: all 0.5s;
5    -moz-transition: all 0.5s;
6    transition: all 0.5s;
7}
8
9.background-cover() {
10    -webkit-background-size: cover;
11    -moz-background-size: cover;
12    background-size: cover;
13    -o-background-size: cover;
14}
15
16.serif-font() {
17        font-family: 'Lora', 'Times New Roman', serif;
18}
19
20.sans-serif-font() {
21        font-family: 'Open Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif;
22}
Note: See TracBrowser for help on using the repository browser.