1
0
Fork 0

Update custom.scss

This commit is contained in:
Daniel Supernault 2018-10-20 23:54:41 -06:00
parent a645c6fb38
commit 70e95eac24
No known key found for this signature in database
GPG Key ID: 0DEF1C662C9033F7
1 changed files with 24 additions and 0 deletions

View File

@ -33,6 +33,10 @@ body, button, input, textarea {
}
}
.dropdown-menu {
min-width: 13rem;
}
.text-dark {
color: #212529 !important;
}
@ -257,6 +261,7 @@ body, button, input, textarea {
transform: translateY(0);
}
}
.details-animated[open] {
animation-name: fadeInDown;
animation-duration: 0.5s;
@ -308,3 +313,22 @@ details summary::-webkit-details-marker {
border: 0 !important;
border-radius: 0 !important;
}
.input-elevated {
font-size: 16px;
line-height: 1.5;
border: none;
background: #FFFFFF;
box-shadow: 0 2px 4px 0 rgba(0,0,0,0.08);
border-radius: 5px;
padding: .5em 1em .5em .5em;
}
.input-elevated::placeholder {
color: #838D99;
}
.input-elevated:focus {
outline: none;
box-shadow: 0 4px 10px 0 rgba(0,0,0,0.16);
}