dev-audioprocessing/assets/css/style.css

81 lines
1.6 KiB
CSS
Raw Normal View History

2022-12-16 23:17:37 +00:00
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700&display=swap');
.bg-img{
background-position: center;
background-size: cover;
background-repeat: no-repeat;
/*background-image: url("../image/loginimg.png");*/
}
.form-control{
border-radius: 5px;
padding: 10px 10px;
}
.form-control:focus{
outline: none;
box-shadow: none;
border-color: orange;
}
.forgot-link{
/*text-decoration: none;*/
color: grey;
text-decoration: underline;
}
.login-btn{
background-color: #e9c046;
color: white;
font-size: 24px;
font-weight: bolder;
padding: 10px 10px;
border-radius: 10px;
border: none;
transition: .1s ease-in-out;
}
.login-ins-btn{
background-color: white;
color: black;
font-size: 24px;
font-weight: bolder;
padding: 10px 10px;
border-radius: 10px;
border: none;
border: 1px solid black;
transition: .1s ease-in-out;
}
.login-btn:hover{
background-color: #e9c059;
}
.signup-link{
color: #e9c046;
text-decoration: underline;
transition: .2s ease-in-out;
2022-12-20 22:17:12 +00:00
}
2022-12-24 16:36:24 +00:00
.accordion-button-homebar:not(.collapsed)::after {
background-position-y:1px ;
}
.accordion-button-homebar:not(.collapsed) {
color: black;
background-color: white;
}
.accordion-button-homebar:focus {
z-index: 3;
border-color: white;
outline: 0;
box-shadow: none;
}
.dropdown-menu {
2022-12-27 20:47:47 +00:00
min-width: 250px !important;
2022-12-24 16:36:24 +00:00
border: none;
box-shadow: 1px 0px 4px 0px rgba(0,0,0,0.10);
}
2022-12-31 20:05:12 +00:00
@media only screen and (max-width: 587px) {
p,h1,h2,h3,h4,h5,h6,span{
font-size: 15px;
}
}
2022-12-20 22:17:12 +00:00
2022-12-31 20:05:12 +00:00
.doted-nav{
position: fixed;
bottom: 0;
}