47 lines
654 B
SCSS
47 lines
654 B
SCSS
page-profile {
|
|
|
|
ion-content {
|
|
background-position: center;
|
|
background-repeat: no-repeat;
|
|
background-size: cover;
|
|
}
|
|
|
|
ion-toolbar {
|
|
|
|
.toolbar-background {
|
|
background-color: transparent;
|
|
}
|
|
|
|
.bar-button {
|
|
color: #ffffff;
|
|
}
|
|
}
|
|
|
|
.details {
|
|
background: rgba(0, 0, 0, 0.8);
|
|
bottom: 0;
|
|
height: 75px;
|
|
left: 0;
|
|
position: absolute;
|
|
right: 0;
|
|
transition: all 250ms 125ms ease-in-out;
|
|
|
|
h2 {
|
|
margin: 0;
|
|
}
|
|
|
|
&.open {
|
|
height: 100%;
|
|
padding-top: 35px;
|
|
}
|
|
|
|
.actions {
|
|
text-align: right;
|
|
|
|
.button-clear {
|
|
color: #fdb315;
|
|
}
|
|
}
|
|
}
|
|
}
|