-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
126 lines (107 loc) · 2.04 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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
*{
margin:15px 15px 15px 15px;
}
h1{
text-align:center;
font-size:100px;
}
.pendu{
border: 1px solid gray;
font-size:40px;
font-family:Verdana, Geneva, Tahoma, sans-serif;
padding-left:1em;
}
.pendu p{
display:inline-block;
}
#buttonHidden{
width:100px;
/* visibility:hidden; */
/* Permet de disparaître, en occupant la place */
display:none;
/* Permet de disparaître, sans occuper la place */
}
#buttonVisible{
text-align:center;
display: block;
}
/*-----BUTTON VISIBLE--------*/
.button-56 {
align-items: center;
background-color: #fee6e3;
border: 2px solid #111;
border-radius: 8px;
box-sizing: border-box;
color: #111;
cursor: pointer;
display: flex;
font-family: Inter,sans-serif;
font-size: 16px;
height: 48px;
justify-content: center;
line-height: 24px;
max-width: 60%;
padding: 0 25px;
position: relative;
text-align: center;
text-decoration: none;
user-select: none;
-webkit-user-select: none;
touch-action: manipulation;
}
.button-56:after {
background-color: #111;
border-radius: 8px;
content: "";
display: block;
height: 48px;
left: 0;
width: 100%;
position: absolute;
top: -2px;
transform: translate(8px, 8px);
transition: transform .2s ease-out;
z-index: -1;
}
.button-56:hover:after {
transform: translate(0, 0);
}
.button-56:active {
background-color: #ffdeda;
outline: 0;
}
.button-56:hover {
outline: 0;
}
@media (min-width: 768px) {
.button-56 {
padding: 0 40px;
}
}
/*-------------*/
/* Le cadre des lettres incorrectes */
#lettresIncorrectes{
width:100%;
height:50px;
border:1.5px solid black;
font-size:20px;
}
/* activation Dark mode */
.dark-mode{
background-color:black;
color:white;
border:white;
}
/* Activation Light mode */
.light-mode{
background-color:white;
color:black;
border:black;
}
/* Bouton dark mode */
.Mode{
top :0px;
left : 0px;
position : absolute;
src: "assets/darkmode.png";
}