Blame view

site/css/style.css 870 Bytes
19ae2416   jnduwamu   MAJ du site
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
  @CHARSET "UTF-8";
  
  body {
  	padding:0;
  	font-family: 'Raleway', sans-serif;
  	margin:0 auto;
  	width: 100%;
  	overflow-x: hidden;
  	background-color:#fff;
  }
  
  html {
  	padding:0;
  	margin:0;
  }
  
  /* Header */
  
  .header {
  	background-color: #0D0D0D;
  	height:70px;
  	line-height: 70px;
  }
  
  a, a:hover {
  	text-decoration: none;
  }
  
  .container-fluid {
  	padding: 0;
  }
  
  .menu {
  	float: right;
  }
  
  .menu a {
  	color:#fff;
  	margin-right: 20px;
  }
  
  .menu a:hover {
  	color:#cfcfcf;
  }
  
  .logo {
  	color: #fff;
  	/*text-transform: uppercase;*/
  	letter-spacing: 1px;
  	float:left;
  	font-family: 'Raleway', sans-serif;
  }
  
  .logo:hover {
  	color:#cfcfcf
  }
  
  .inscription {
  	text-align:center;
  }
  
  .logo {
  	text-align:center;
  }
fafd2866   grouille   Test
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
  
  /* Page d'accueil */
  
  #multicouche {
    position: relative; 
  }
  #multicouche img {
  	position: absolute;
  	top: 0;
  	left: 0;
  }
   
  #coucheinf {
  	z-index: 1;
  }
  
  #couchesup {
  	z-index: 2;
  }