Added Number Cards for Opportunities

This commit is contained in:
Jeremy Rangel
2025-06-19 23:40:03 -07:00
parent 0b4f0f4a45
commit f44b3e8605
19 changed files with 288 additions and 4 deletions

View File

@ -1,9 +1,15 @@
/* VARIABLES */
:root {
--primary: white;
--text-color: white;
--border-color: none;
--darker-border-color: none;
--fg-color: #1D1F37; /* Dark Bluish Purple */
--gray-900: white;
--gray-700: #cccccc;
--control-bg: #008AFC; /* Light Blue */
--icon-stroke: #008AFC;
}
@ -29,11 +35,25 @@ h2 {font-size:3rem}
/* Button */
button {background:#008AFC}
/* Form Elements */
input.form-control {
background-color: var(--fg-color)!important;
border-bottom: 1px solid gray;
border-radius:0;
}
/* ------- FRAPPE ELEMENTS ------- */
/* Text */
body .text-muted {color:#cccccc}
body .text-muted {color:#cccccc!important}
/* Forms */
.web-form-header,form.web-form {border:none};
.form-group .ql-container.ql-snow {border:none;background:var(--fg-color)}
.form-group .ql-container.ql-snow svg path {stroke:#cccccc}
/* Account Info Box */
@media only screen and (max-width:767px){
.row.account-info {padding:15px}
}
/* Web Sidebar */
.web-sidebar {margin-top:60px}