Blame view

public/css/style.css 1010 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
  body {
55a10789   Geoffrey PREUD'HOMME   Meilleure navbar
6
      padding-top: 70px;
8ae24f57   Geoffrey PREUD'HOMME   Liste des membres
7
  }
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
  
4b9805ae   Geoffrey PREUD'HOMME   Animations différ...
13
  [ng-repeat].ng-enter {
55a10789   Geoffrey PREUD'HOMME   Meilleure navbar
14
15
16
17
      -webkit-animation: fadeInLeft 0.5s;
      animation: fadeInLeft 0.5s;
  }
  
4b9805ae   Geoffrey PREUD'HOMME   Animations différ...
18
  [ng-repeat].ng-leave {
55a10789   Geoffrey PREUD'HOMME   Meilleure navbar
19
20
21
22
      -webkit-animation: fadeOutLeft 0.5s;
      animation: fadeOutLeft 0.5s;
  }
  
4b9805ae   Geoffrey PREUD'HOMME   Animations différ...
23
24
25
26
27
28
29
30
31
32
  [ng-if].ng-enter {
      -webkit-animation: zoomIn 0.5s;
      animation: fadeInLeft 0.5s;
  }
  
  [ng-if].ng-leave {
      -webkit-animation: zoomOut 0.5s;
      animation: fadeOutLeft 0.5s;
  }
  
55a10789   Geoffrey PREUD'HOMME   Meilleure navbar
33
  body > .container {
d03db7d0   Geoffrey PREUD'HOMME   Ajout d'animation...
34
35
36
      position: relative;
  }
  
55a10789   Geoffrey PREUD'HOMME   Meilleure navbar
37
  body > .container > .ng-enter {
d03db7d0   Geoffrey PREUD'HOMME   Ajout d'animation...
38
39
40
41
42
      position: absolute;
      -webkit-animation: zoomIn 0.5s;
      animation: zoomIn 0.5s;
  }
  
55a10789   Geoffrey PREUD'HOMME   Meilleure navbar
43
  body > .container > .ng-leave {
d03db7d0   Geoffrey PREUD'HOMME   Ajout d'animation...
44
45
46
47
48
      position: absolute;
      -webkit-animation: fadeOutDown 0.5s;
      animation: fadeOutDown 0.5s;
  }
  
55a10789   Geoffrey PREUD'HOMME   Meilleure navbar
49
  table {
d03db7d0   Geoffrey PREUD'HOMME   Ajout d'animation...
50
51
      width: 90%;
  }
f661af15   Geoffrey PREUD'HOMME   Amelioré la gesti...
52
  
55a10789   Geoffrey PREUD'HOMME   Meilleure navbar
53
  table .ng-enter {
f661af15   Geoffrey PREUD'HOMME   Amelioré la gesti...
54
55
56
57
      -webkit-animation: fadeInLeft 0.5s;
      animation: fadeInLeft 0.5s;
  }
  
55a10789   Geoffrey PREUD'HOMME   Meilleure navbar
58
  table .ng-leave {
f661af15   Geoffrey PREUD'HOMME   Amelioré la gesti...
59
60
      -webkit-animation: fadeOutLeft 0.5s;
      animation: fadeOutLeft 0.5s;
4b9805ae   Geoffrey PREUD'HOMME   Animations différ...
61
  }