fuse-angular/src/assets/angular-material-examples/form-field-custom-control/form-field-custom-control-example.css
Sercan Yemen f4636d9a37 Update Angular, Angular Material and Flex Layout to 6
Updated additional project files
Updated Angular Material examples
2018-05-04 19:28:20 +03:00

22 lines
234 B
CSS
Executable File

div {
display: flex;
}
input {
border: none;
background: none;
padding: 0;
outline: none;
font: inherit;
text-align: center;
}
span {
opacity: 0;
transition: opacity 200ms;
}
:host.floating span {
opacity: 1;
}