-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
70 lines (60 loc) · 1.17 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
*:focus {
outline: none;
box-shadow: 0 0 0 2px #99CCFF;
}
#lecteurSon {
display: none;
}
#page{
width: 100%;
height: 100%;
display: flex;
flex-direction: column;
align-items: center;
}
#buttonsContainer {
display: flex;
justify-content: center;
align-items: center;
width: 90%;
background-color: rgb(230,247,255);
border-radius: 10px;
height: 60px;
}
.buttons{
padding: 10px;
margin:10px;
border-radius: 10px;
}
#pictureContainer {
display: flex;
justify-content: center;
align-items: center;
width: 90%;
background-color: rgb(255,242,230);
border-radius: 10px;
padding-top: 30px;
padding-bottom: 30px;
margin-top: 10px;
}
#picture {
max-width: 100%;
max-height: 564px; /* hauteur maximale souhaitée */
}
#pavContainer {
display: flex;
justify-content: center;
align-items: center;
width: 90%;
background-color: rgb(230,247,255);
border-radius: 10px;
margin-top: 10px;
padding: 10px;
}
.keyPad{
max-width: 80%;
max-height: 80px; /* hauteur maximale souhaitée */
}
.keyPad:active{
opacity: 0.5;
}