/*Style for tabs*/ .tabs { display: -webkit-box; display: -moz-box; display: -ms-flexbox; display: -webkit-flex; display: flex; position: relative; overflow-x: hidden; overflow-y: hidden; height: 48px; background-color: #fff; margin: 0 auto; width: 100%; white-space: nowrap; } .tabs .tab { -webkit-box-flex: 1; -webkit-flex-grow: 1; -ms-flex-positive: 1; flex-grow: 1; display: block; float: left; text-align: center; line-height: 48px; height: 48px; padding: 0; margin: 0; text-transform: uppercase; text-overflow: ellipsis; overflow: hidden; letter-spacing: .8px; width: 35%; min-width: 80px; } .tabs .tab a { text-decoration: none; color: #00bcd4; display: block; width: 100%; height: 100%; text-overflow: ellipsis; overflow: hidden; -webkit-transition: color 0.28s ease; -moz-transition: color 0.28s ease; -o-transition: color 0.28s ease; -ms-transition: color 0.28s ease; transition: color 0.28s ease; } .tabs .tab a:hover { color: #3be9ff; } .tabs .tab.disabled a { color: #3be9ff; cursor: default; } .tabs .indicator { position: absolute; bottom: 0; height: 3px; background-color: #D54E21; will-change: left, right; } .cyan { background-color: #2196F3 !important; } .cyan.lighten-4 { background-color: #ffffff !important; } .z-depth-1, nav, .card-panel, .card, .toast, .btn, .btn-large, .btn-floating, .dropdown-content, .collapsible, .side-nav { box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12); } .white-text { color: #FFFFFF !important; } /*Style for wave effect*/ .waves-effect { position: relative; cursor: pointer; display: inline-block; overflow: hidden; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; user-select: none; -webkit-tap-highlight-color: transparent; vertical-align: middle; z-index: 1; will-change: opacity, transform; -webkit-transition: all 0.3s ease-out; -moz-transition: all 0.3s ease-out; -o-transition: all 0.3s ease-out; -ms-transition: all 0.3s ease-out; transition: all 0.3s ease-out; } .waves-effect .waves-ripple { position: absolute; border-radius: 50%; width: 20px; height: 20px; margin-top: -10px; margin-left: -10px; opacity: 0; background: rgba(0, 0, 0, 0.2); -webkit-transition: all 0.7s ease-out; -moz-transition: all 0.7s ease-out; -o-transition: all 0.7s ease-out; -ms-transition: all 0.7s ease-out; transition: all 0.7s ease-out; -webkit-transition-property: -webkit-transform, opacity; -moz-transition-property: -moz-transform, opacity; -o-transition-property: -o-transform, opacity; transition-property: transform, opacity; -webkit-transform: scale(0); -moz-transform: scale(0); -ms-transform: scale(0); -o-transform: scale(0); transform: scale(0); pointer-events: none; } .waves-effect.waves-light .waves-ripple { background-color: rgba(255, 255, 255, 0.45); }