Blame view

public/style.css 1.18 KB
71899fcf   Geoffrey PREUD'HOMME   Récupération du s...
1
  body {
ba814e44   Geoffrey PREUD'HOMME   GUI revue
2
3
4
      position: fixed;
      width: 100%;
      height: 100%;
e704c732   Geoffrey PREUD'HOMME   Avancement web
5
6
7
8
9
      background: black;
      color: white;
      font-family: "GeosansLight";
      padding: 30px;
      overflow: hidden;
ba814e44   Geoffrey PREUD'HOMME   GUI revue
10
      font-size: 17pt;
71899fcf   Geoffrey PREUD'HOMME   Récupération du s...
11
12
  }
  
893c4e9a   Geoffrey PREUD'HOMME   Stars
13
14
15
16
17
18
19
20
21
22
23
24
25
26
  #stars {
      position: fixed;
      top: 0px;
      left: 0px;
      right: 0px;
      bottom: 0px;
  }
  
  #stars img {
      position: absolute;
      width: 100px;
      image-rendering: -moz-crisp-edges;
  }
  
ba814e44   Geoffrey PREUD'HOMME   GUI revue
27
  #header {
5186f0a6   Geoffrey PREUD'HOMME   Best score
28
      margin-top: 15px;
71899fcf   Geoffrey PREUD'HOMME   Récupération du s...
29
30
31
  }
  
  #logo {
ba814e44   Geoffrey PREUD'HOMME   GUI revue
32
      margin-top: 20px;
e704c732   Geoffrey PREUD'HOMME   Avancement web
33
34
      width: 100%;
      image-rendering: -moz-crisp-edges;
71899fcf   Geoffrey PREUD'HOMME   Récupération du s...
35
36
  }
  
ba814e44   Geoffrey PREUD'HOMME   GUI revue
37
  #main {
5186f0a6   Geoffrey PREUD'HOMME   Best score
38
      margin-top: 30px;
ba814e44   Geoffrey PREUD'HOMME   GUI revue
39
40
41
      font-family: Arcadepix;
  }
  
5186f0a6   Geoffrey PREUD'HOMME   Best score
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
  #best {
      position: relative;
  }
  
  #bestBlock {
      position: absolute;
      top: 150px;
      width: 600px;
      left: 50%;
      margin-left: -300px;
      text-align: center;
      display: none;
  }
  
  #bestBlock .score {
      color: red;
      font-size: 500%;
  }
  #bestBlock .name {
      font-size: 200%;
      color: red;
      text-transform: uppercase;
ba814e44   Geoffrey PREUD'HOMME   GUI revue
64
65
66
67
  }
  
  #scores h1 {
      font-weight: bold;
71899fcf   Geoffrey PREUD'HOMME   Récupération du s...
68
69
  }
  
ba814e44   Geoffrey PREUD'HOMME   GUI revue
70
71
  #scores li {
      text-transform: uppercase;
71899fcf   Geoffrey PREUD'HOMME   Récupération du s...
72
73
  }
  
ba814e44   Geoffrey PREUD'HOMME   GUI revue
74
75
76
77
78
79
80
81
82
  #footer {
      position: absolute;
      bottom: 20px;
      height: 100px;
      width: 100%;
  }
  
  #footer p {
      margin-top: 50px;
ba814e44   Geoffrey PREUD'HOMME   GUI revue
83
      text-align: center;
71899fcf   Geoffrey PREUD'HOMME   Récupération du s...
84
85
  }
  
ba814e44   Geoffrey PREUD'HOMME   GUI revue
86
87
  #footer div, #footer div img {
      height: 100%;
71899fcf   Geoffrey PREUD'HOMME   Récupération du s...
88
  }