tao-react-components
Version:
react components crafted with love by Tao
66 lines (56 loc) • 1.13 kB
CSS
.HeaderBarButton{
height:41px;
width:80px;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
margin-right: 1vw;
}
.HeaderBarButton-Green{
background-color: rgba(1,198,183, 0.8);
border: 2px solid rgba(1,198,183, 1);
}
.HeaderBarButton-Blue{
background-color: rgba(111,203,220, 0.8);
border: 2px solid rgba(111,203,220, 1);
}
.HeaderBarButton-Red{
background-color: rgba(225,22,100, 0.8);
border: 2px solid rgba(225,22,100, 1);
}
.HeaderBarButton-Yellow{
background-color: rgba(255,197,133, 0.8);
border: 2px solid rgba(255,197,133, 1);
}
.HeaderBarButton:hover{
cursor: pointer;
}
.HeaderBarButton-Icon-Icon{
font-size: 16px;
color: white;
}
.HeaderBarButton-Icon{
border-radius: 5px;
width: 100%;
height: 100%;
display: flex;
justify-content: center;
align-items: center;
}
.HeaderBarButton-Title{
font-size: 11px;
font-weight: 200;
color: #7f8c8d;
}
.HeaderBar-ViewWindow-Max{
position: fixed;
height: 100%;
width: 100%;
left:0px;
bottom: 0px;
}
.HeaderBarButton:hover{
opacity: 0.8;
box-shadow: 0px 0px 10px #f1f1f1;
}