mirror of
https://github.com/kuhyx/ARAI.git
synced 2026-07-04 13:23:03 +02:00
feat: final version
This commit is contained in:
parent
81612bbc39
commit
4e0412a48d
@ -1,3 +1,4 @@
|
|||||||
|
<div class="main">
|
||||||
<div class="legal-costs">
|
<div class="legal-costs">
|
||||||
Przewidywalne minimalne koszta:
|
Przewidywalne minimalne koszta:
|
||||||
@if(costData !== null) {
|
@if(costData !== null) {
|
||||||
@ -9,7 +10,9 @@
|
|||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|
||||||
<h1 class="bait"> Chcesz zminimalizować koszta aż o <strong> 90%? </strong> </h1>
|
<h1 class="bait"> Chcesz zminimalizować koszta aż do <strong> 90%? </strong> </h1>
|
||||||
<div class="center-button">
|
<div class="center-button">
|
||||||
<button mat-raised-button color="primary" class="find-mediator" type="submit" (click)="onSubmit()" class="submit-button">Znajdź Mediatora</button>
|
<button mat-raised-button color="primary" class="find-mediator" type="submit" (click)="onSubmit()" class="submit-button">Znajdź Mediatora</button>
|
||||||
|
</div>
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
@ -1,44 +1,51 @@
|
|||||||
.legal-costs {
|
.legal-costs {
|
||||||
font-family: 'Times New Roman', serif;
|
font-family: 'Times New Roman', serif;
|
||||||
color: #2a2a2a; // Dark text for readability
|
color: #2a2a2a;
|
||||||
background-color: #f5f5f5; // Light background to keep the content subtle
|
background-color: #f5f5f5;
|
||||||
padding: 20px;
|
padding: 20px;
|
||||||
border: 1px solid #ddd; // Slight border for definition
|
border: 1px solid #ddd;
|
||||||
border-radius: 5px; // Soften the edges for a modern look
|
border-radius: 5px;
|
||||||
font-size: 16px;
|
font-size: 16px;
|
||||||
|
width: 300px;
|
||||||
|
margin: 0 auto;
|
||||||
|
}
|
||||||
|
|
||||||
.cost-details {
|
.main {
|
||||||
margin-top: 10px;
|
display: flex;
|
||||||
padding: 10px;
|
justify-content: center;
|
||||||
background-color: #fff; // A clean background for the cost details
|
flex-direction: column;
|
||||||
border-left: 5px solid #004085; // A striking left border for emphasis
|
}
|
||||||
font-size: 24px;
|
|
||||||
|
.legal-costs .cost-details {
|
||||||
span {
|
margin-top: 10px;
|
||||||
font-weight: bold; // Make the dynamic content pop
|
padding: 10px;
|
||||||
}
|
background-color: #fff;
|
||||||
|
border-left: 5px solid #004085;
|
||||||
.cost {
|
font-size: 24px;
|
||||||
color: #007bff; // A professional blue for costs
|
}
|
||||||
}
|
|
||||||
|
.legal-costs .cost-details span {
|
||||||
.time {
|
font-weight: bold;
|
||||||
color: #28a745; // A hopeful green for the time
|
}
|
||||||
}
|
|
||||||
}
|
.legal-costs .cost-details .cost {
|
||||||
}
|
color: #007bff;
|
||||||
|
}
|
||||||
|
|
||||||
|
.legal-costs .cost-details .time {
|
||||||
|
color: #28a745;
|
||||||
|
}
|
||||||
|
|
||||||
.bait {
|
.bait {
|
||||||
text-align: center;
|
text-align: center;
|
||||||
}
|
}
|
||||||
|
|
||||||
.find-mediator {
|
.find-mediator {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
}
|
}
|
||||||
|
|
||||||
.center-button {
|
.center-button {
|
||||||
display: flex;
|
display: flex;
|
||||||
justify-content: center;
|
justify-content: center;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
}
|
}
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user