add images
BIN
public/img/app/error in filter of expenses .png
Normal file
|
After Width: | Height: | Size: 273 KiB |
BIN
public/img/app/should be expense category .png
Normal file
|
After Width: | Height: | Size: 117 KiB |
BIN
public/img/illustrations/02.png
Normal file
|
After Width: | Height: | Size: 137 KiB |
BIN
public/img/illustrations/03.png
Normal file
|
After Width: | Height: | Size: 162 KiB |
BIN
public/img/illustrations/gap between grid header and message.png
Normal file
|
After Width: | Height: | Size: 77 KiB |
BIN
public/img/illustrations/payment request.png
Normal file
|
After Width: | Height: | Size: 25 KiB |
BIN
public/img/illustrations/prom-min.webp
Normal file
|
After Width: | Height: | Size: 426 KiB |
95
src/pages/authentication/MainLogin.css
Normal file
@ -0,0 +1,95 @@
|
||||
.display-header {
|
||||
padding: 0px;
|
||||
margin: 0px;
|
||||
font-family: "Poppins", sans-serif;
|
||||
color: #00324c;
|
||||
font-size: 35px;
|
||||
font-weight: 300;
|
||||
line-height: 45px;
|
||||
padding-bottom: 20px;
|
||||
}
|
||||
|
||||
.display-title {
|
||||
padding: 0px;
|
||||
margin: 0px;
|
||||
font-family: "Poppins", sans-serif;
|
||||
color: #00324c;
|
||||
font-size: 20px;
|
||||
font-weight: 300;
|
||||
line-height: 45px;
|
||||
padding-bottom: 20px;
|
||||
}
|
||||
|
||||
.display-body {
|
||||
font-size: larger;
|
||||
padding: 0px;
|
||||
margin: 0px;
|
||||
font-family: "Poppins", sans-serif;
|
||||
color: #687377;
|
||||
font-size: 16px;
|
||||
font-weight: 300;
|
||||
}
|
||||
ul {
|
||||
font-size: 16px;
|
||||
font-weight: 300;
|
||||
list-style-type: disc;
|
||||
margin-block-start: 1em;
|
||||
margin-block-end: 1em;
|
||||
padding-inline-start: 40px;
|
||||
unicode-bidi: isolate;
|
||||
}
|
||||
|
||||
ul li {
|
||||
padding: 10px 10px 10px 0;
|
||||
}
|
||||
|
||||
li {
|
||||
unicode-bidi: isolate;
|
||||
margin: 0px;
|
||||
display: list-item;
|
||||
}
|
||||
.ul.more-features-list {
|
||||
max-width: 430px;
|
||||
padding: 10px 0 0 0;
|
||||
display: block;
|
||||
}
|
||||
ul.more-features-list {
|
||||
display: block;
|
||||
|
||||
position: relative;
|
||||
margin-left: 10px;
|
||||
}
|
||||
|
||||
.list-item {
|
||||
border-bottom: 1px #d6d7d7 solid;
|
||||
}
|
||||
|
||||
.autoplay-progress {
|
||||
position: absolute;
|
||||
right: 16px;
|
||||
bottom: 16px;
|
||||
z-index: 10;
|
||||
width: 48px;
|
||||
height: 48px;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
font-weight: bold;
|
||||
color: var(--swiper-theme-color);
|
||||
}
|
||||
|
||||
.autoplay-progress svg {
|
||||
--progress: 0;
|
||||
position: absolute;
|
||||
left: 0;
|
||||
top: 0px;
|
||||
z-index: 10;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
stroke-width: 4px;
|
||||
stroke: var(--swiper-theme-color);
|
||||
fill: none;
|
||||
stroke-dashoffset: calc(125.6px * (1 - var(--progress)));
|
||||
stroke-dasharray: 125.6;
|
||||
transform: rotate(-90deg);
|
||||
}
|
||||