Silver calculator

This commit is contained in:
Codrin Pavel
2020-05-17 18:31:41 +03:00
parent 4f509aeaf6
commit f3a57b6e8b
8 changed files with 141 additions and 2 deletions

View File

@@ -22,6 +22,7 @@
"modules/war",
"modules/hamburger",
"modules/header",
"modules/calculator",
// Print
"base/print"

View File

@@ -0,0 +1,34 @@
.calculator {
display: block;
table {
margin: 80px auto;
}
thead {
font-weight: 600;
color: #261CD1;
}
td {
border: 0;
padding: 15px 20px;
width: calc(100% / 6);
}
tbody tr {
&:nth-child(odd) td {
background: #FAFAFC;
}
}
input {
border: 0;
font: inherit;
font-weight: 600;
background: none;
outline: 0;
cursor: text;
color: #261CD1;
}
}