Blame view

public/css/style.css 926 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 {
7cf406d0   Geoffrey PREUD'HOMME   Modifications de ...
14
      -webkit-animation: fadeInRight 0.5s;
7dd1a01d   Geoffrey PREUD'HOMME   Corrigé incohéren...
15
      animation: fadeInRight 0.5s;
55a10789   Geoffrey PREUD'HOMME   Meilleure navbar
16
17
  }
  
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;
  }
  
7dd1a01d   Geoffrey PREUD'HOMME   Corrigé incohéren...
23
  [ng-if].ng-enter, [ng-show].ng-enter, [ng-hide].ng-enter {
4b9805ae   Geoffrey PREUD'HOMME   Animations différ...
24
      -webkit-animation: zoomIn 0.5s;
7dd1a01d   Geoffrey PREUD'HOMME   Corrigé incohéren...
25
      animation: zoomIn 0.5s;
4b9805ae   Geoffrey PREUD'HOMME   Animations différ...
26
27
  }
  
7dd1a01d   Geoffrey PREUD'HOMME   Corrigé incohéren...
28
  [ng-if].ng-leave, [ng-show].ng-leave, [ng-hide].ng-leave {
4b9805ae   Geoffrey PREUD'HOMME   Animations différ...
29
      -webkit-animation: zoomOut 0.5s;
7dd1a01d   Geoffrey PREUD'HOMME   Corrigé incohéren...
30
      animation: zoomOut 0.5s;
4b9805ae   Geoffrey PREUD'HOMME   Animations différ...
31
32
  }
  
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
  
20533c3a   Geoffrey PREUD'HOMME   Mise en valeur de...
53
54
  .bureau {
      color: blue;
4b9805ae   Geoffrey PREUD'HOMME   Animations différ...
55
  }