89 lines
No EOL
1.7 KiB
CSS
89 lines
No EOL
1.7 KiB
CSS
.btn-second{
|
|
background-color: #B6C2C2;
|
|
border: none;
|
|
color: #112E2E;
|
|
padding: 6px 12px;
|
|
text-align: center;
|
|
font-size: 18px;
|
|
font-weight: 500;
|
|
border-radius: 3px;
|
|
text-decoration: none;
|
|
}
|
|
.btn-second:hover, .btn-third:hover{
|
|
background-color: lightgray;
|
|
color: black;
|
|
transition: all 0.5s ease;
|
|
}
|
|
.btn-third{
|
|
background-color: #135D66;
|
|
border: none;
|
|
color: #E3FEF7;
|
|
padding: 5px 12px;
|
|
text-align: center;
|
|
font-size: 16px;
|
|
font-weight: 500;
|
|
border-radius: 3px;
|
|
text-decoration: none;
|
|
}
|
|
.btn-fourth{
|
|
background-color: #4B70F5;
|
|
border: none;
|
|
color: white;
|
|
padding: 5px 12px;
|
|
text-align: center;
|
|
font-size: 16px;
|
|
font-weight: 500;
|
|
border-radius: 3px;
|
|
text-decoration: none;
|
|
}
|
|
.btn-fourth:hover{
|
|
background-color: #83B4FF;
|
|
color: white;
|
|
transition: all 0.5s ease;
|
|
}
|
|
.btn-cancel{
|
|
background-color: #EE4E4E;
|
|
border: none;
|
|
color: white;
|
|
padding: 5px 12px;
|
|
text-align: center;
|
|
font-size: 16px;
|
|
font-weight: 500;
|
|
border-radius: 3px;
|
|
text-decoration: none;
|
|
}
|
|
.btn-cancel:hover{
|
|
background-color: #FF8080;
|
|
color: white;
|
|
transition: all 0.5s ease;
|
|
}
|
|
#dashboard-menu{
|
|
position: fixed;
|
|
height: 100%;
|
|
background-color: #194141;
|
|
color: white;
|
|
z-index: 1000;
|
|
}
|
|
.custom-alert-t{
|
|
position:fixed;
|
|
top: 0px;
|
|
left: 0px;
|
|
width: 100%;
|
|
z-index:9999;
|
|
border-radius:0px
|
|
}
|
|
#dashboard-menu .nav-link.active{
|
|
background-color: #77B0AA;
|
|
}
|
|
@media (max-width:992px) {
|
|
#dashboard-menu{
|
|
width: 100%;
|
|
height: auto;
|
|
}
|
|
#dashboard-body{
|
|
margin-top: 60px;
|
|
}
|
|
.custom-alert-t{
|
|
top: -1000px;
|
|
}
|
|
} |