Today Work

This commit is contained in:
2022-11-29 18:53:29 +05:30
parent 56f7e77229
commit 8d292bcdea
2 changed files with 103 additions and 233 deletions
+85 -7
View File
@@ -1,9 +1,10 @@
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');
:root {
--topNavHeight: 75px;
--rtrWidth: 60px;
--lftWidth: 340px;
--lftWidth: 300px;
--tpMenuPad: 30px;
--icnPadng: 20px 0px;
--icnPadng: 10px 0px;
--prmBgColor: rgb(244, 244, 221);
--secdBgColor: #fafaf3;
--secdSubColor: #f4f4f3;
@@ -12,6 +13,7 @@
body {
margin: 0px;
padding: 0px;
font-family: 'Poppins', sans-serif;
}
ul,
@@ -100,7 +102,7 @@ li.logo-li {
}
.lft-nav-bar-2 li {
font-size: 20px;
font-size: 16px;
padding: 0px 15px;
}
@@ -109,6 +111,7 @@ li.logo-li {
display: flex;
flex-direction: column;
background-color: var(--secdBgColor);
transition: width 0.3s;
}
.rtr-nav-bar {
@@ -163,7 +166,7 @@ li.logo-li {
}
.la {
font-size: 30px;
font-size: 20px;
color: black;
}
@@ -174,8 +177,8 @@ li.logo-li {
}
.hdr {
font-size: 18px;
padding: 18px 9px;
font-size: 16px;
padding: 10px 5px;
font-weight: 600;
text-transform: capitalize;
background-color: #e3e3e3;
@@ -183,8 +186,83 @@ li.logo-li {
.bdy {
font-size: 16px;
padding: 18px 9px;
padding: 10px 5px;
font-weight: 400;
text-transform: capitalize;
border-bottom: 1px solid white;
align-items: center;
}
.mnNvIcn,
.mnNvIcn:focus {
box-shadow: none !important;
}
.lft-nav-bar.lft-nav-bar-Wrap {
width: var(--rtrWidth);
transition: width 0.3s;
}
.lft-nav-bar.lft-nav-bar-Wrap .lft-nav-bar-2 {
display: none;
transition: display 0.3s;
}
.bdy-ul {
height: 100%;
overflow-y: scroll;
}
.ctr-lst-pge.lft-nav-bar-Wrap {
left: var(--rtrWidth);
transition: left 0.3s;
}
a.badge {
font-size: 14px;
font-weight: 500;
color: inherit;
text-decoration: none;
}
.badge.badge-soft-green,
.badge.badge-soft-success {
background: #E6FBF2;
color: #00D67F;
}
/* scroll bar start here*/
::-webkit-scrollbar {
width: 6px;
}
/* Track */
::-webkit-scrollbar-track {
background: #f1f1f1;
}
/* Handle */
::-webkit-scrollbar-thumb {
background: #888;
}
/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
background: #555;
}
/* Scroll bar End Here */
.pgnt {
border-top-left-radius: 50px;
border-top-right-radius: 50px;
}