Blame view

public/css/style.css 1.16 KB
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
  
15a9d8f4   Geoffrey PREUD'HOMME   Nouvelle édition ...
9
10
11
12
13
14
  .logo {
      max-width: 300px;
      margin: 25px;
      border-radius: 5px;
  }
  
501a9b80   Geoffrey PREUD'HOMME   Meilleures notifi...
15
16
  [data-notify="title"] {
      display: block;
b5dead51   Geoffrey PREUD'HOMME   Notifications
17
  }
d03db7d0   Geoffrey PREUD'HOMME   Ajout d'animation...
18
  
4b9805ae   Geoffrey PREUD'HOMME   Animations différ...
19
  [ng-repeat].ng-enter {
7cf406d0   Geoffrey PREUD'HOMME   Modifications de ...
20
      -webkit-animation: fadeInRight 0.5s;
7dd1a01d   Geoffrey PREUD'HOMME   Corrigé incohéren...
21
      animation: fadeInRight 0.5s;
55a10789   Geoffrey PREUD'HOMME   Meilleure navbar
22
23
  }
  
4b9805ae   Geoffrey PREUD'HOMME   Animations différ...
24
  [ng-repeat].ng-leave {
55a10789   Geoffrey PREUD'HOMME   Meilleure navbar
25
26
27
28
      -webkit-animation: fadeOutLeft 0.5s;
      animation: fadeOutLeft 0.5s;
  }
  
7dd1a01d   Geoffrey PREUD'HOMME   Corrigé incohéren...
29
  [ng-if].ng-enter, [ng-show].ng-enter, [ng-hide].ng-enter {
4b9805ae   Geoffrey PREUD'HOMME   Animations différ...
30
      -webkit-animation: zoomIn 0.5s;
7dd1a01d   Geoffrey PREUD'HOMME   Corrigé incohéren...
31
      animation: zoomIn 0.5s;
4b9805ae   Geoffrey PREUD'HOMME   Animations différ...
32
33
  }
  
7dd1a01d   Geoffrey PREUD'HOMME   Corrigé incohéren...
34
  [ng-if].ng-leave, [ng-show].ng-leave, [ng-hide].ng-leave {
4b9805ae   Geoffrey PREUD'HOMME   Animations différ...
35
      -webkit-animation: zoomOut 0.5s;
7dd1a01d   Geoffrey PREUD'HOMME   Corrigé incohéren...
36
      animation: zoomOut 0.5s;
4b9805ae   Geoffrey PREUD'HOMME   Animations différ...
37
38
  }
  
66e43291   Geoffrey PREUD'HOMME   Voir le code sour...
39
40
41
42
43
44
45
46
47
48
  [mess-edit] .ng-enter {
      -webkit-animation: flipInY 0.5s;
      animation: flipInY 0.5s;
  }
  
  [mess-edit] .ng-leave {
      -webkit-animation: flipOutY 0.5s;
      animation: flipOutY 0.5s;
  }
  
55a10789   Geoffrey PREUD'HOMME   Meilleure navbar
49
  body > .container {
d03db7d0   Geoffrey PREUD'HOMME   Ajout d'animation...
50
51
52
      position: relative;
  }
  
55a10789   Geoffrey PREUD'HOMME   Meilleure navbar
53
  body > .container > .ng-enter {
d03db7d0   Geoffrey PREUD'HOMME   Ajout d'animation...
54
55
56
57
58
      position: absolute;
      -webkit-animation: zoomIn 0.5s;
      animation: zoomIn 0.5s;
  }
  
55a10789   Geoffrey PREUD'HOMME   Meilleure navbar
59
  body > .container > .ng-leave {
d03db7d0   Geoffrey PREUD'HOMME   Ajout d'animation...
60
61
62
63
64
      position: absolute;
      -webkit-animation: fadeOutDown 0.5s;
      animation: fadeOutDown 0.5s;
  }
  
55a10789   Geoffrey PREUD'HOMME   Meilleure navbar
65
  table {
d03db7d0   Geoffrey PREUD'HOMME   Ajout d'animation...
66
67
      width: 90%;
  }
f661af15   Geoffrey PREUD'HOMME   Amelioré la gesti...
68
  
20533c3a   Geoffrey PREUD'HOMME   Mise en valeur de...
69
70
  .bureau {
      color: blue;
4b9805ae   Geoffrey PREUD'HOMME   Animations différ...
71
  }