Blame view

public/css/style.css 638 Bytes
8ae24f57   Geoffrey PREUD'HOMME   Liste des membres
1
2
3
  html {
      overflow-y: scroll;
  }
4932caf3   Geoffrey PREUD'HOMME   Nettoyage et rebr...
4
  
8ae24f57   Geoffrey PREUD'HOMME   Liste des membres
5
6
7
  body {
      padding-top: 50px;
  }
4932caf3   Geoffrey PREUD'HOMME   Nettoyage et rebr...
8
  
501a9b80   Geoffrey PREUD'HOMME   Meilleures notifi...
9
10
  [data-notify="title"] {
      display: block;
b5dead51   Geoffrey PREUD'HOMME   Notifications
11
  }
d03db7d0   Geoffrey PREUD'HOMME   Ajout d'animation...
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
  
  #ngViewAnimationContainer {
      position: relative;
  }
  
  [ng-view].ng-enter {
      position: absolute;
      -webkit-animation: zoomIn 0.5s;
      animation: zoomIn 0.5s;
  }
  
  [ng-view].ng-leave {
      position: absolute;
      -webkit-animation: fadeOutDown 0.5s;
      animation: fadeOutDown 0.5s;
  }
  
  #membre-list {
      width: 90%;
  }
f661af15   Geoffrey PREUD'HOMME   AmeliorĂ© la gesti...
32
33
34
35
36
37
38
39
40
41
  
  #membre-list .ng-enter {
      -webkit-animation: fadeInLeft 0.5s;
      animation: fadeInLeft 0.5s;
  }
  
  #membre-list .ng-leave {
      -webkit-animation: fadeOutLeft 0.5s;
      animation: fadeOutLeft 0.5s;
  }