diff --git a/controllets/animated-button-container-controllet/animated-button-container-controllet.html b/controllets/animated-button-container-controllet/animated-button-container-controllet.html
index 7628503..7e97f46 100644
--- a/controllets/animated-button-container-controllet/animated-button-container-controllet.html
+++ b/controllets/animated-button-container-controllet/animated-button-container-controllet.html
@@ -44,24 +44,22 @@
position: absolute;
top: 8px;
left: 28.5vw;
- --iron-icon-height: 24px;
- --iron-icon-width: 24px;
- width: 32px;
- height: 32px;
+ --iron-icon-height: 20px;
+ --iron-icon-width: 20px;
+ width: 24px;
+ height: 24px;
--paper-fab-background:#9e9e9e;
z-index: 1001;
}
#open{
- --iron-icon-height: 48px;
- --iron-icon-width: 48px;
- width: 64px;
- height: 64px;
- --paper-fab-background:#2196f3;
+ --paper-fab-background:transparent;
+ background: transparent;
}
#selected_item{
- margin-left: 25px;
+ /*margin-left: 25px;*/
+ margin-top: -5px;
padding: 0;
ms-transform: scale(0.60);
-moz-transform: scale(0.60);
@@ -73,8 +71,8 @@
-o-transform-origin: 0 0;
-webkit-transform-origin: 0 0;
transform-origin: 0 0;
- max-height: 64px;
- max-width: 64px;
+ /*max-height: 64px;
+ max-width: 64px;*/
}
#container_content{
@@ -83,16 +81,53 @@
overflow: auto;
}
#toolbar{
- background: #2196F3 ;
+ background: #2196F3;
height: 45px;
}
search-panel-controllet{
+ position: absolute;
+ top: 0px;
+ left: 0px;
+ }
+
+ .button-container{
+ color: #fff;
+ box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
+
position: relative;
- top: -5px;
- left: 80px;
}
+ .button-container:hover{
+ color: #fff;
+ box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
+ -webkit-transition: 0.2s ease-out;
+ -moz-transition: 0.2s ease-out;
+ -o-transition: 0.2s ease-out;
+ -ms-transition: 0.2s ease-out;
+ transition: 0.2s ease-out;
+ cursor: pointer;
+ }
+
+ .button-container::before{
+ position: absolute;
+ content: '';
+ top: 0;
+ left: 0;
+ width: 100%;
+ height: 100%;
+ background-color: rgba(0, 0, 0, 0);
+ }
+
+
+ .button-container:hover::before{
+ background-color: rgba(0, 0, 0, .15);
+ -webkit-transition: 0.2s ease-out;
+ -moz-transition: 0.2s ease-out;
+ -o-transition: 0.2s ease-out;
+ -ms-transition: 0.2s ease-out;
+ transition: 0.2s ease-out;
+ }
@@ -102,17 +137,20 @@