Skip to content

Commit

Permalink
Improved overview Design
Browse files Browse the repository at this point in the history
Signed-off-by: Florian Oberndörfer <florian8751t@gmail.com>
  • Loading branch information
flo0852 committed Dec 23, 2024
1 parent 7616d29 commit 42f0e93
Show file tree
Hide file tree
Showing 2 changed files with 51 additions and 16 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

.progress-bar-container {
position: relative;
width: 70%;
width: 100%;
display: inline-block;
vertical-align: middle;
--clr-progress-bg-color: #C6DCF2;
Expand All @@ -34,7 +34,7 @@
}

.card-header {
background-color: #f5f5f5;
background-color: #f3f8fb;
padding: 10px;
border-bottom: 1px solid #dcdcdc;
display: flex;
Expand All @@ -51,7 +51,7 @@
}

.card-footer {
background-color: #f5f5f5;
background-color: #f3f8fb;
border-top: 1px solid #dcdcdc;
text-align: right;
border-bottom-left-radius: 10px;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,34 +24,69 @@
}

.card {
position: relative;
z-index: 1;
}

.card-block {
padding: 20px;
}

.clr-form-control {
margin-top: 0;
border: 1px solid #dcdcdc;
border-radius: 10px;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
margin-bottom: 20px;
background-color: #ffffff;
}

.card-header {
background-color: #f3f8fb;
padding: 10px;
border-bottom: 1px solid #dcdcdc;
display: flex;
justify-content: space-between;
align-items: center;
border-top-left-radius: 10px;
border-top-right-radius: 10px;
}

.card-header-title {
margin: 0;
font-weight: 500;
font-weight: 600;
font-size: 1em;
color: #333333;
}

.card-header-actions {
display: flex;
align-items: center;
}

:host ::ng-deep .card-header {
border-bottom: none !important;
.card-block {
padding: 20px;
background-color: #ffffff;
}

.card-footer {
background-color: #f3f8fb;
border-top: 1px solid #dcdcdc;
text-align: right;
padding: 10px;
border-bottom-left-radius: 10px;
border-bottom-right-radius: 10px;
}

.btn-link {
color: #007bff;
text-decoration: none;
background-color: transparent;
border: none;
padding: 0;
font-size: 1em;
cursor: pointer;
}

.btn-link:hover {
text-decoration: underline;
}

.badge-info {
background-color: #0D233A;
color: #ffffff;
width: 20px;
height: 20px;
border-radius: 20px;
font-size: 14px;
}

0 comments on commit 42f0e93

Please sign in to comment.