[75f74d9] | 1 | * {
|
---|
| 2 | margin: 0;
|
---|
| 3 | padding: 0;
|
---|
| 4 | box-sizing: border-box;
|
---|
| 5 | font-family: "Poppins", sans-serif;
|
---|
| 6 | }
|
---|
| 7 |
|
---|
| 8 | body {
|
---|
| 9 | transition: all 0.3s ease;
|
---|
| 10 | }
|
---|
| 11 |
|
---|
| 12 | /* Sidebar Styles */
|
---|
| 13 | .sidebar {
|
---|
| 14 | position: fixed;
|
---|
| 15 | left: 0;
|
---|
| 16 | top: 0;
|
---|
| 17 | height: 100%;
|
---|
| 18 | width: 78px;
|
---|
| 19 | background: #11101D;
|
---|
| 20 | padding: 6px 14px;
|
---|
| 21 | z-index: 1;
|
---|
| 22 | transition: all 0.5s ease;
|
---|
| 23 | }
|
---|
| 24 |
|
---|
| 25 | .sidebar.open {
|
---|
| 26 | width: 250px;
|
---|
| 27 | }
|
---|
| 28 |
|
---|
| 29 | .sidebar .logo-details {
|
---|
| 30 | height: 60px;
|
---|
| 31 | display: flex;
|
---|
| 32 | align-items: center;
|
---|
| 33 | justify-content: space-between;
|
---|
| 34 | position: relative;
|
---|
| 35 | }
|
---|
| 36 |
|
---|
| 37 | .sidebar .logo-details .logo_name {
|
---|
| 38 | color: #fff;
|
---|
| 39 | font-size: 20px;
|
---|
| 40 | font-weight: 600;
|
---|
| 41 | opacity: 0;
|
---|
| 42 | transition: all 0.5s ease;
|
---|
| 43 | }
|
---|
| 44 |
|
---|
| 45 | .sidebar.open .logo-details .logo_name {
|
---|
| 46 | opacity: 1;
|
---|
| 47 | }
|
---|
| 48 |
|
---|
| 49 | .sidebar .logo-details #btn {
|
---|
| 50 | position: absolute;
|
---|
| 51 | top: 50%;
|
---|
| 52 | right: 0;
|
---|
| 53 | transform: translateY(-50%);
|
---|
| 54 | font-size: 22px;
|
---|
| 55 | text-align: center;
|
---|
| 56 | cursor: pointer;
|
---|
| 57 | transition: all 0.5s ease;
|
---|
| 58 | }
|
---|
| 59 |
|
---|
| 60 | .sidebar i {
|
---|
| 61 | color: #fff;
|
---|
| 62 | height: 60px;
|
---|
| 63 | min-width: 50px;
|
---|
| 64 | font-size: 28px;
|
---|
| 65 | text-align: center;
|
---|
| 66 | line-height: 60px;
|
---|
| 67 | }
|
---|
| 68 |
|
---|
| 69 | .sidebar .nav-list {
|
---|
| 70 | margin-top: 20px;
|
---|
| 71 | height: 100%;
|
---|
| 72 | }
|
---|
| 73 |
|
---|
| 74 | .sidebar li {
|
---|
| 75 | position: relative;
|
---|
| 76 | margin: 8px 0;
|
---|
| 77 | list-style: none;
|
---|
| 78 | }
|
---|
| 79 |
|
---|
| 80 | .sidebar input {
|
---|
| 81 | font-size: 15px;
|
---|
| 82 | color: #fff;
|
---|
| 83 | font-weight: 400;
|
---|
| 84 | outline: none;
|
---|
| 85 | height: 50px;
|
---|
| 86 | width: 100%;
|
---|
| 87 | border: none;
|
---|
| 88 | border-radius: 12px;
|
---|
| 89 | transition: all 0.5s ease;
|
---|
| 90 | background: #1d1b31;
|
---|
| 91 | }
|
---|
| 92 |
|
---|
| 93 | .sidebar.open input {
|
---|
| 94 | padding: 0 20px 0 50px;
|
---|
| 95 | width: 100%;
|
---|
| 96 | }
|
---|
| 97 |
|
---|
| 98 | .sidebar li a {
|
---|
| 99 | display: flex;
|
---|
| 100 | height: 100%;
|
---|
| 101 | width: 100%;
|
---|
| 102 | border-radius: 12px;
|
---|
| 103 | align-items: center;
|
---|
| 104 | text-decoration: none;
|
---|
| 105 | transition: all 0.4s ease;
|
---|
| 106 | background: #11101D;
|
---|
| 107 | }
|
---|
| 108 |
|
---|
| 109 | .sidebar li a:hover {
|
---|
| 110 | background: #fff;
|
---|
| 111 | }
|
---|
| 112 |
|
---|
| 113 | .sidebar li a .links_name {
|
---|
| 114 | color: #fff;
|
---|
| 115 | font-size: 15px;
|
---|
| 116 | font-weight: 400;
|
---|
| 117 | white-space: nowrap;
|
---|
| 118 | opacity: 0;
|
---|
| 119 | pointer-events: none;
|
---|
| 120 | transition: 0.4s;
|
---|
| 121 | }
|
---|
| 122 |
|
---|
| 123 | .sidebar.open li a .links_name {
|
---|
| 124 | opacity: 1;
|
---|
| 125 | pointer-events: auto;
|
---|
| 126 | }
|
---|
| 127 |
|
---|
| 128 | .sidebar li a:hover .links_name,
|
---|
| 129 | .sidebar li a:hover i {
|
---|
| 130 | transition: all 0.5s ease;
|
---|
| 131 | color: #11101D;
|
---|
| 132 | }
|
---|
| 133 |
|
---|
| 134 | .sidebar li .tooltip {
|
---|
| 135 | position: absolute;
|
---|
| 136 | top: -20px;
|
---|
| 137 | left: calc(100% + 15px);
|
---|
| 138 | background: #fff;
|
---|
| 139 | box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
|
---|
| 140 | padding: 6px 12px;
|
---|
| 141 | border-radius: 4px;
|
---|
| 142 | font-size: 15px;
|
---|
| 143 | font-weight: 400;
|
---|
| 144 | opacity: 0;
|
---|
| 145 | white-space: nowrap;
|
---|
| 146 | pointer-events: none;
|
---|
| 147 | transition: 0s;
|
---|
| 148 | }
|
---|
| 149 |
|
---|
| 150 | .sidebar li:hover .tooltip {
|
---|
| 151 | opacity: 1;
|
---|
| 152 | pointer-events: auto;
|
---|
| 153 | transition: all 0.4s ease;
|
---|
| 154 | top: 50%;
|
---|
| 155 | transform: translateY(-50%);
|
---|
| 156 | }
|
---|
| 157 |
|
---|
| 158 |
|
---|
| 159 |
|
---|
| 160 | /* Main Section Styles */
|
---|
| 161 | .home-section {
|
---|
| 162 | position: relative;
|
---|
| 163 | background: #e4e9f7;
|
---|
| 164 | min-height: 100vh;
|
---|
| 165 | top: 0;
|
---|
| 166 | left: 78px;
|
---|
| 167 | width: calc(100% -78px);
|
---|
| 168 | transition: all 0.5s ease;
|
---|
| 169 | }
|
---|
| 170 |
|
---|
| 171 | .sidebar.open~.home-section {
|
---|
| 172 | left: 250px;
|
---|
| 173 | width: calc(100%-250px);
|
---|
| 174 | }
|
---|
| 175 |
|
---|
| 176 | .home-section .text {
|
---|
| 177 | display: inline-block;
|
---|
| 178 | color: #11101D;
|
---|
| 179 | font-size: 25px;
|
---|
| 180 | font-weight: 500;
|
---|
| 181 | margin: 18px;
|
---|
| 182 | }
|
---|
| 183 |
|
---|
| 184 | /* Light Mode Styles */
|
---|
| 185 | body.light-mode {
|
---|
| 186 | background-color: #f7f7f7;
|
---|
| 187 | color: #333;
|
---|
| 188 | }
|
---|
| 189 |
|
---|
| 190 | body.light-mode .sidebar {
|
---|
| 191 | background: #f0f0f0;
|
---|
| 192 | }
|
---|
| 193 |
|
---|
| 194 | body.light-mode .sidebar .logo-details .logo_name {
|
---|
| 195 | color: #333;
|
---|
| 196 | }
|
---|
| 197 |
|
---|
| 198 | body.light-mode .sidebar li a {
|
---|
| 199 | background: #8f8f8f;
|
---|
| 200 | color: #333;
|
---|
| 201 | }
|
---|
| 202 |
|
---|
| 203 | body.light-mode .sidebar li a:hover {
|
---|
| 204 | background: #ddd;
|
---|
| 205 | }
|
---|
| 206 |
|
---|
| 207 | body.light-mode .sidebar li .tooltip {
|
---|
| 208 | background: #333;
|
---|
| 209 | color: #fff;
|
---|
| 210 | }
|
---|
| 211 |
|
---|
| 212 | body,
|
---|
| 213 | .sidebar {
|
---|
| 214 | transition: all 0.3s ease;
|
---|
| 215 | }
|
---|
| 216 |
|
---|
| 217 | .sidebar.open,
|
---|
| 218 | .home-section {
|
---|
| 219 | transition: all 0.5s ease;
|
---|
| 220 | }
|
---|
| 221 |
|
---|
| 222 | /* LINE BREAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAK */
|
---|
| 223 |
|
---|
| 224 | /* Submenu Styles */
|
---|
| 225 | .submenu {
|
---|
| 226 | display: none;
|
---|
| 227 | padding-left: 20px;
|
---|
| 228 | list-style-type: none;
|
---|
| 229 | }
|
---|
| 230 |
|
---|
| 231 | .submenu li {
|
---|
| 232 | margin: 10px 0;
|
---|
| 233 | }
|
---|
| 234 |
|
---|
| 235 | .submenu li a {
|
---|
| 236 | color: #fff;
|
---|
| 237 | font-size: 14px;
|
---|
| 238 | text-decoration: none;
|
---|
| 239 | }
|
---|
| 240 |
|
---|
| 241 | .submenu li a:hover {
|
---|
| 242 | background-color: #333;
|
---|
| 243 | color: #fff;
|
---|
| 244 | }
|
---|
| 245 |
|
---|