2018-05-14 10:54:17 +00:00
|
|
|
@import "colors";
|
2018-06-19 06:12:36 +00:00
|
|
|
|
|
|
|
vn-snackbar #shapes {
|
|
|
|
max-height: 20.625em;
|
2018-08-08 06:53:19 +00:00
|
|
|
margin-left: -12.5em;
|
|
|
|
position: fixed;
|
2018-02-20 09:00:19 +00:00
|
|
|
z-index: 100;
|
2018-08-08 06:53:19 +00:00
|
|
|
width: 25em;
|
|
|
|
left: 50%;
|
|
|
|
bottom: 0
|
2018-06-19 06:12:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
vn-snackbar .shape {
|
|
|
|
background-color: rgba(1, 1, 1, 0.8);
|
2018-02-20 09:00:19 +00:00
|
|
|
box-shadow: 0 0 .4em rgba(1,1,1,.4);
|
2018-06-19 06:12:36 +00:00
|
|
|
transition: transform 300ms ease-in-out;
|
2018-08-08 06:53:19 +00:00
|
|
|
transform: translateY(20em);
|
|
|
|
box-sizing: border-box;
|
|
|
|
border-radius: .2em;
|
|
|
|
margin-bottom: 15px;
|
|
|
|
color: white;
|
|
|
|
padding: 1em;
|
|
|
|
|
2018-06-19 06:12:36 +00:00
|
|
|
&.text {
|
|
|
|
text-align: center
|
|
|
|
}
|
2018-02-20 09:00:19 +00:00
|
|
|
|
|
|
|
&.shown {
|
2018-08-08 06:53:19 +00:00
|
|
|
transform: translateY(0);
|
2018-02-20 09:00:19 +00:00
|
|
|
}
|
2018-06-19 06:12:36 +00:00
|
|
|
|
|
|
|
&.success {
|
|
|
|
background-color: rgba(163, 209, 49, 0.8);
|
|
|
|
color: #445911;
|
2018-02-20 09:00:19 +00:00
|
|
|
|
|
|
|
& > button {
|
|
|
|
color: rgba(1, 1, 1, 0.6);
|
|
|
|
}
|
|
|
|
}
|
2018-06-19 06:12:36 +00:00
|
|
|
|
2018-02-20 09:00:19 +00:00
|
|
|
&.error {
|
2018-06-19 06:12:36 +00:00
|
|
|
background-color: rgba(198, 40, 40, 0.8);
|
2018-02-20 09:00:19 +00:00
|
|
|
|
|
|
|
& > button {
|
|
|
|
color: rgba(1, 1, 1, 0.6);
|
|
|
|
}
|
|
|
|
}
|
2018-06-19 06:12:36 +00:00
|
|
|
|
2018-02-20 09:00:19 +00:00
|
|
|
& > button {
|
|
|
|
background-color: transparent;
|
2018-08-08 06:53:19 +00:00
|
|
|
text-transform: uppercase;
|
|
|
|
margin-left: .5em;
|
2018-02-20 09:00:19 +00:00
|
|
|
font-weight: bold;
|
2018-08-08 06:53:19 +00:00
|
|
|
cursor: pointer;
|
2018-05-14 10:54:17 +00:00
|
|
|
color: $main-01;
|
2018-08-08 06:53:19 +00:00
|
|
|
float: right;
|
|
|
|
border: none;
|
2018-05-31 12:40:42 +00:00
|
|
|
padding: .5em;
|
2018-08-08 06:53:19 +00:00
|
|
|
margin: -.5em
|
2018-02-20 09:00:19 +00:00
|
|
|
}
|
|
|
|
}
|