Browse Source

inserido todos botoes da tela inicial, inserido botao de minimizar, inserido funcao de apagar display

master
Matheo Bonucia 6 months ago
parent
commit
8de27a31bb
  1. 94
      keypad.js
  2. 68
      keypad_style.css

94
keypad.js

File diff suppressed because one or more lines are too long

68
keypad_style.css

@ -12,7 +12,7 @@
grid-template-columns: repeat(3, 1fr);
gap: 6px;
padding: 10px;
height: 340px;
height: max-content;
justify-items: center;
}
@ -22,7 +22,7 @@
justify-content: center;
flex-direction: column;
align-items: center;
background-color: #ccc;
background-color: transparent;
}
.simplesipTitles {
@ -32,7 +32,9 @@
justify-content: space-between;
font-size: 14px;
max-height: 30px;
margin: 2px 8px;
padding: 2px 4px;
background-color: rgba(195, 195, 195, 0.056);
border-radius: 8px 8px 0 0;
font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}
@ -40,20 +42,49 @@
margin-right: 4px;
}
.bn-minimize {
width: 22px;
height: 22px;
.displayContainer {
display: flex;
flex-direction: row;
flex: 1;
width: 85%;
margin-inline-start: 25px;
}
.telephone {
background-color: rgba(45, 208, 45, 0.751);
padding: 10px;
font-size: 24px;
border: 1px solid transparent;
cursor: pointer;
border-radius: 50%;
width: 70px;
height: 70px;
line-height: 6px;
}
.telephone:hover {
background-color: rgba(45, 208, 45, 0.866);
}
.bn-minimize {
width: 32px;
height: 25px;
border-radius: 12%;
cursor: pointer;
border: none;
font-size: 22px;
text-align: center;
line-height: 8px;
background-color: #dededec4;
background-color: transparent;
}
.bn-minimize img {
margin: 0;
padding: 0;
align-items: center;
}
.bn-minimize:hover {
background-color: #edededc4;
background-color: #ededed60;
}
.divLogo {
@ -83,22 +114,33 @@
}
.simplesip-bn:hover {
background-color: #edededc4;
background-color: rgba(237, 237, 237, 0.858);
}
body {
display: flex;
justify-content: center;
position: absolute;
bottom: 0;
right: 10px;
}
.display {
#display {
height: 100%;
font-size: 18px;
font-size: 22px;
width: 100%;
background-color: transparent;
display: flex;
flex-direction: row;
justify-content: center;
align-items: center;
background-color: aquamarine;
font-weight: 501;
font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}
#clearDisplay {
cursor: pointer;
display: flex;
align-items: center;
justify-content: end;
}

Loading…
Cancel
Save