44 lines
843 B
CSS
Executable File
44 lines
843 B
CSS
Executable File
/* clavier virtuel */
|
|
#clavier-virtuel-conteneur {
|
|
position: absolute;
|
|
left: 0;
|
|
top: 0;
|
|
width: auto;
|
|
display: flex;
|
|
flex-direction: column;
|
|
overflow: hidden;
|
|
background-color: #d6dbdf;
|
|
}
|
|
|
|
.clavier-virtuel-ligne {
|
|
width: 100%;
|
|
height: 50px;
|
|
margin: 3px 0 3px 0;
|
|
display: flex;
|
|
flex-direction: row;
|
|
justify-content: flex-start;
|
|
align-items: center;
|
|
}
|
|
|
|
.clavier-virtuel-touche {
|
|
height: 50px;
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
justify-content: center;
|
|
margin: 0 4px 0 4px;
|
|
/*border: 1px solid #000;*/
|
|
border-radius: 2px;
|
|
cursor: pointer;
|
|
box-shadow: inset 0 0 8px #bbb, 0 1px 0 #aaa, 0 4px 0 #bbb, 0 10px 30px #ddd;
|
|
}
|
|
|
|
.clavier-virtuel-text {
|
|
font-size: 16px;
|
|
font-weight: bold;
|
|
display: flex;
|
|
flex-direction: row;
|
|
justify-content: center;
|
|
color: #000000;
|
|
}
|