TIF_E41201157/imt/resources/views/includes/style.blade.php

98 lines
2.9 KiB
PHP

<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-1BmE4kWBq78iYhFldvKuhfTAU6auU8tT94WrHftjDbrCEXSU1oBoqyl2QvZ6jIW3" crossorigin="anonymous">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap" rel="stylesheet">
<link href='https://unpkg.com/boxicons@2.1.4/css/boxicons.min.css' rel='stylesheet'>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css">
<link href="{{ asset ('datatables/dataTables.bootstrap4.min.css') }}" rel="stylesheet">
<style>
body {
font-family: "Poppins", sans-serif;
font-weight: 400;
font-style: normal;
}
.bg-nav {
background-color: rgb(76, 175, 80);
}
.card-box {
position: relative;
color: #fff;
padding: 20px 10px 40px;
margin: 20px 0px;
}
.card-box:hover {
text-decoration: none;
color: #f1f1f1;
}
.card-box:hover .icon i {
font-size: 100px;
transition: 1s;
-webkit-transition: 1s;
}
.card-box .inner {
padding: 5px 10px 0 10px;
}
.card-box h3 {
font-size: 27px;
font-weight: bold;
margin: 0 0 8px 0;
white-space: nowrap;
padding: 0;
text-align: left;
}
.card-box p {
font-size: 15px;
}
.card-box .icon {
position: absolute;
top: auto;
bottom: 5px;
right: 5px;
z-index: 0;
font-size: 72px;
color: rgba(0, 0, 0, 0.15);
}
.card-box .card-box-footer {
position: absolute;
left: 0px;
bottom: 0px;
text-align: center;
padding: 3px 0;
color: rgba(255, 255, 255, 0.8);
background: rgba(0, 0, 0, 0.1);
width: 100%;
text-decoration: none;
}
.card-box:hover .card-box-footer {
background: rgba(0, 0, 0, 0.3);
}
.bg-blue {
background-color: #00c0ef !important;
}
.bg-green {
background-color: #00a65a !important;
}
.bg-orange {
background-color: #f39c12 !important;
}
.bg-red {
background-color: #d9534f !important;
}
@media (min-width: 768px) {
.auth {
width: 40%; /* Adjusted width for laptops and larger screens */
}
}
@media (max-width: 767px) {
.auth {
width: 60%; /* Adjusted width for screens larger than 400px */
}
}
@media (max-width: 600px) {
.auth {
width: 80%; /* Adjusted width for screens larger than 400px */
}
}
</style>