109 lines
2.1 KiB
CSS
109 lines
2.1 KiB
CSS
body, html{
|
|
margin: 0;
|
|
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
|
|
}
|
|
header {
|
|
width: 100%;
|
|
height: 130px;
|
|
background-color: rgb(255, 255, 255);
|
|
|
|
}
|
|
th {
|
|
color: #2c6230;
|
|
text-align: left;
|
|
|
|
}
|
|
tr {
|
|
border-bottom: 1px solid black;
|
|
}
|
|
tr:last-child {
|
|
border-bottom: none;
|
|
}
|
|
footer{
|
|
width: 100%;
|
|
display: flex;
|
|
flex-direction: row;
|
|
text-align: center;
|
|
justify-content: center;
|
|
height: 60px;
|
|
background-color: rgb(255, 255, 255);
|
|
margin-top: 40px;
|
|
}
|
|
table{
|
|
font-size: 20px;
|
|
border-collapse: collapse;
|
|
}
|
|
input[type="text"] {
|
|
padding: 5px;
|
|
width: 70%;
|
|
font-size: 25px;
|
|
box-sizing: border-box;
|
|
}
|
|
input[type="range"] {
|
|
-webkit-appearance: none;
|
|
background-color: #79a3f1;
|
|
outline: none;
|
|
opacity: 0.7;
|
|
-webkit-transition: opacity 0.2s;
|
|
transition: opacity 0.2s;
|
|
border-radius: 20px;
|
|
width: 60%;
|
|
}
|
|
|
|
input[type="range"]::-webkit-slider-thumb {
|
|
-webkit-appearance: none;
|
|
appearance: none;
|
|
width: 20px;
|
|
height: 20px;
|
|
background-color: #0359fa;
|
|
cursor: pointer;
|
|
border-radius: 50%;
|
|
border: 2px solid #0359fa;
|
|
}
|
|
|
|
input[type="range"]::-moz-range-thumb {
|
|
width: 20px;
|
|
height: 20px;
|
|
background-color: white;
|
|
cursor: pointer;
|
|
border-radius: 100%;
|
|
border: 2px solid rgb(0, 0, 0);
|
|
}
|
|
.main-content {
|
|
display: flex;
|
|
justify-content: center;
|
|
}
|
|
.logo {
|
|
width: 470px;
|
|
height: auto;
|
|
margin-top: 1.5%;
|
|
margin-left: 18%;
|
|
}
|
|
.footer-logo{
|
|
width: 100px;
|
|
height: 40px;
|
|
margin-right: 10px;
|
|
margin-top:10px;
|
|
}
|
|
.percent-color{
|
|
font-weight:bold; color:rgb(1, 91, 165);
|
|
}
|
|
.textured-background{
|
|
display: flex;
|
|
justify-content: center;
|
|
text-align: center;
|
|
width: 100%;
|
|
height: auto;
|
|
background-color: #dadada;
|
|
background-image: url(https://www.mpe.ca/wp-content/uploads/2019/04/gray-dotted-background.png);
|
|
background-repeat: no-repeat;
|
|
background-position: center center;
|
|
background-attachment: scroll;
|
|
background-size: cover;
|
|
margin-bottom: 20px;
|
|
}
|
|
.dollar-sign {
|
|
text-align: right;
|
|
width: 10px;
|
|
}
|