Blame view

public/style.css 1.01 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
  }
  
ba814e44   Geoffrey PREUD'HOMME   GUI revue
13
  #header {
5186f0a6   Geoffrey PREUD'HOMME   Best score
14
      margin-top: 15px;
71899fcf   Geoffrey PREUD'HOMME   Récupération du s...
15
16
17
  }
  
  #logo {
ba814e44   Geoffrey PREUD'HOMME   GUI revue
18
      margin-top: 20px;
e704c732   Geoffrey PREUD'HOMME   Avancement web
19
20
      width: 100%;
      image-rendering: -moz-crisp-edges;
71899fcf   Geoffrey PREUD'HOMME   Récupération du s...
21
22
  }
  
ba814e44   Geoffrey PREUD'HOMME   GUI revue
23
  #main {
5186f0a6   Geoffrey PREUD'HOMME   Best score
24
      margin-top: 30px;
ba814e44   Geoffrey PREUD'HOMME   GUI revue
25
26
27
      font-family: Arcadepix;
  }
  
5186f0a6   Geoffrey PREUD'HOMME   Best score
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
  #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
50
51
52
53
  }
  
  #scores h1 {
      font-weight: bold;
71899fcf   Geoffrey PREUD'HOMME   Récupération du s...
54
55
  }
  
ba814e44   Geoffrey PREUD'HOMME   GUI revue
56
57
  #scores li {
      text-transform: uppercase;
71899fcf   Geoffrey PREUD'HOMME   Récupération du s...
58
59
  }
  
ba814e44   Geoffrey PREUD'HOMME   GUI revue
60
61
62
63
64
65
66
67
68
69
70
  #footer {
      position: absolute;
      bottom: 20px;
      height: 100px;
      width: 100%;
  }
  
  #footer p {
      margin-top: 50px;
      font-size: 75%;
      text-align: center;
71899fcf   Geoffrey PREUD'HOMME   Récupération du s...
71
72
  }
  
ba814e44   Geoffrey PREUD'HOMME   GUI revue
73
74
  #footer div, #footer div img {
      height: 100%;
71899fcf   Geoffrey PREUD'HOMME   Récupération du s...
75
  }