Creating Estimate Page

This commit is contained in:
Paolo Arena
2019-07-12 18:23:16 +02:00
parent b11dd46f9f
commit 6a92dbeca8
11 changed files with 328 additions and 12 deletions

View File

@@ -40,8 +40,7 @@
}
}
.my-notif-class{
.my-notif-class {
font-weight: bold;
}
@@ -54,14 +53,15 @@
.lowperc {
color: red;
}
.medperc {
color: blue;
}
.highperc {
color: green;
}
.hide-if-small {
@media (max-width: 600px) {
display: none;
@@ -73,3 +73,25 @@
max-width: 22px;
}
}
.tothebottomfixed {
left: 0;
right: 0;
position: fixed;
z-index: 9999;
box-sizing: border-box;
overflow: hidden;
margin: 0 auto;
bottom: 10px;
}
.tothetop {
left: 0;
right: 0;
position: fixed;
z-index: 9999;
box-sizing: border-box;
overflow: hidden;
margin: 0 auto;
top: 20px;
}