-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
93 lines (80 loc) · 1.54 KB
/
style.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
/* Basic */
body
{
background-color: #EEEEEEE;
color: #474f51;
font-size: 11pt;
font-family: "Lucida Grande", "Lucida Sans Unicode", "Lucida Sans", "DejaVu Sans", Verdana, "sans-serif";
line-height: 1.85em;
font-weight: 300;
text-align:center;
}
#page {
display:block;
width:600px;
margin:0 auto;
}
#jeu {
width:600px;
height:300px;
margin:10px auto;
}
/*barre progression*/
#pwidget
{
background-color:lightgray;
width:600px;
padding:2px;
-moz-border-radius:3px;
border-radius:3px;
text-align:center;
border:1px solid gray;
}
#progressbar
{
width: 600px;
text-align:center;
padding: 1px;
background-color: white;
border: 1px solid black;
height: 28px;
}
#indicator
{
text-align:center;
background-image:url("images/shaded-red.png");
height:28px;
margin:0;
}
#progressnum
{
width: 100%;
}
h1 {
margin:13px auto 3px;
text-align:center;
}
input {
color: #474f51;
line-height: 1.2em;
margin-bottom:5px;
}
img {
display:block;
margin:0;
border:0;
float:left;
box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
opacity:0.8;
transition: 0.5s;
}
img:hover {
transform:rotate(3deg);
-ms-transform:rotate(3deg); /* IE 9 */
-webkit-transform:rotate(3deg); /* Opera, Chrome, and Safari */
transition: 1s;
}
#chronotime {
border:none;
text-align:center
}