-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathLe DOM.css
More file actions
92 lines (61 loc) · 1.31 KB
/
Le DOM.css
File metadata and controls
92 lines (61 loc) · 1.31 KB
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
/* '*' séléctionne toute la page c'est comme un html */
* {
color: rgb(0, 0, 0);
font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}
body{
background-color: crimson;
}
h1{
text-align: center;
}
.Quizz{
text-align: center ;
}
button{
background-color: #ce9852;
font-size: 16px;
color: crimson;
border-radius: 25px;
border: rgb(235, 235, 235);
border-style: groove;
height: 40px;
width: 150px;
cursor: pointer;
}
button:hover{
transform: scale(1.03);
}
/* la réponse */
p{
visibility: hidden;
}
/* LES MODIFICATIONS INJECTER DANS JS */
/* la mauvaise réponse */
.show-1{
visibility: visible;
color: red;
}
/* la bonne réponse */
.show-2{
visibility: visible;
color: green;
}
/* changement de couleur de la div .Quizz*/
.modif-1{
background-color: #ce9852;
border-radius: 125px;
border-style: ridge;
transition: 0.5s;
}
/* modification de la souris */
.Souris{
color: rgba(194, 120, 228, 0.99);
background-color: whitesmoke;
opacity: 0,01;
height: 50px;
width: 50px;
border-style: solid;
border-radius: 100px;
position: absolute;
}