Blame view

public/css/style.css 807 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
  
55a10789   Geoffrey PREUD'HOMME   Meilleure navbar
13
14
15
16
17
18
19
20
21
22
23
  .ng-enter {
      -webkit-animation: fadeInLeft 0.5s;
      animation: fadeInLeft 0.5s;
  }
  
  .ng-leave {
      -webkit-animation: fadeOutLeft 0.5s;
      animation: fadeOutLeft 0.5s;
  }
  
  body > .container {
d03db7d0   Geoffrey PREUD'HOMME   Ajout d'animation...
24
25
26
      position: relative;
  }
  
55a10789   Geoffrey PREUD'HOMME   Meilleure navbar
27
  body > .container > .ng-enter {
d03db7d0   Geoffrey PREUD'HOMME   Ajout d'animation...
28
29
30
31
32
      position: absolute;
      -webkit-animation: zoomIn 0.5s;
      animation: zoomIn 0.5s;
  }
  
55a10789   Geoffrey PREUD'HOMME   Meilleure navbar
33
  body > .container > .ng-leave {
d03db7d0   Geoffrey PREUD'HOMME   Ajout d'animation...
34
35
36
37
38
      position: absolute;
      -webkit-animation: fadeOutDown 0.5s;
      animation: fadeOutDown 0.5s;
  }
  
55a10789   Geoffrey PREUD'HOMME   Meilleure navbar
39
  table {
d03db7d0   Geoffrey PREUD'HOMME   Ajout d'animation...
40
41
      width: 90%;
  }
f661af15   Geoffrey PREUD'HOMME   AmeliorĂ© la gesti...
42
  
55a10789   Geoffrey PREUD'HOMME   Meilleure navbar
43
  table .ng-enter {
f661af15   Geoffrey PREUD'HOMME   AmeliorĂ© la gesti...
44
45
46
47
      -webkit-animation: fadeInLeft 0.5s;
      animation: fadeInLeft 0.5s;
  }
  
55a10789   Geoffrey PREUD'HOMME   Meilleure navbar
48
  table .ng-leave {
f661af15   Geoffrey PREUD'HOMME   AmeliorĂ© la gesti...
49
50
51
      -webkit-animation: fadeOutLeft 0.5s;
      animation: fadeOutLeft 0.5s;
  }