-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
executable file
·94 lines (84 loc) · 1.83 KB
/
styles.css
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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
h1 {
border-width: 0px;
font-size: x-large;
color: black;
text-align: center;
}
cell_bleu {
border: medium solid black;
background-color: #66ffff;
}
.cell_bleu {
border: medium solid black;
background-color: #66ffff;
font-size: medium;
font-weight: bold;
text-align: center;
}
.titre_synoptique {
font-style: normal;
color: black;
opacity: 0.9;
background-color: #33ffff;
font-size: xx-large;
text-align: center;
}
.fond_bleu {
border-style: solid;
border-width: thin;
background-color: #33ffff;
text-align: center;
}
.debimetre {
border-style: none;
border-width: 0px;
font-family: Arial,Helvetica,sans-serif;
font-size: xx-large;
line-height: 0%;
color: black;
text-align: right;
}
/*debut du style pour mettre une image en fond *:
/*valeurs par defaut pour tout les navigateurs */
/* ne pas modifié a partir d'ici */
* { margin:0;padding:0;}
/* taille de reference */
html {
height:100%;
width:100%;
}
/*on applique une taille et on place en absolute l'image et son conteneur */
html img.imghtml, html div.imghtml{
width:100%;height:100%;
top:0;
left:0;
position:absolute;
}
html, html * {
position:relative;
z-index:0;
}
body {
z-index:2; /* pour afficher tout au dessus de l'image */
width:100%;
height:100%;
}
/*ne pas modifier le css au dessus de cette ligne */
/* vous pouvez a partir de la modifié et ajouter votre css */
/* conteneur de votre page */
#corps {
width:80%; /* pour le centré ,facultatif*/
height:100%;
margin:auto; /* pour le centré ,facultatif*/
scroll:auto;/* pour IE ? */
}
#demo{text-align:center;top:45%;font-size:30px;color:#FE1300;}
#infobulle{
position: absolute;
visibility : hidden;
border: 1px solid #CCCCCC;
padding: 10px;
font-family: Verdana, Arial;
font-size: 10px;
background-color: #333333;
}