Projet

Général

Profil

Paste
Télécharger (1,06 ko) Statistiques
| Branche: | Révision:

root / drupal7 / sites / all / libraries / flexslider-2.5.0 / css / base.less @ bad93dab

1 0aee3c58 Assos Assos
/* ====================================================================================================================
2
 * BASE STYLES
3
 * ====================================================================================================================*/
4
5
6
.flexslider {
7
8
  margin: 0; 
9
  padding: 0;
10
11
  .slides {
12
13
    > li {
14
15
      display: none; 
16
      -webkit-backface-visibility: hidden;
17
18
    }
19
20
    img{
21
22
      width: 100%;
23
      display: block;
24
25
    }
26
27
28
    //
29
    // Clearfix for the .slides element
30
    //
31
32
    &:after{
33
34
      content: "\0020"; 
35
      display: block; 
36
      clear: both; 
37
      visibility: hidden; 
38
      line-height: 0; 
39
      height: 0;
40
41
42
    }
43
44
    html[xmlns] &{
45
      
46
      display: block;
47
48
    }
49
50
    * html &{
51
      
52
      height: 1%;
53
54
    }
55
56
57
    
58
     // 
59
     // No JavaScript Fallback
60
     // If you are not using another script, such as Modernizr, make sure you
61
     // include js that eliminates this class on page load
62
     // 
63
    
64
65
    .no-js &{
66
67
      > li{
68
69
        &:first-child{
70
71
          display: block;
72
73
        }
74
      }
75
    }
76
  }
77
}