header-ui
Version:
Header UI
307 lines (257 loc) • 4.9 kB
CSS
#flow-nav-container {
z-index: 5;
position: fixed;
top: 0;
width: 100%;
height: 56px;
border-color: rgb(218, 213, 213);
border-width: 0 0 1px 0;
border-style: solid;
display: inline-flex;
flex-flow: row nowrap;
align-items: center;
}
.flow-nav-brand {
display: flex;
justify-content: flex-start;
width: 30%;
}
.flow-nav-brand > img {
cursor: pointer;
height: 40px;
width: 40px;
position: relative;
border-radius: 10%;
margin-left: 12px;
}
.app-selector {
background-color: rgb(249, 249, 249) ;
font-family: Roboto, sans-serif ;
border-radius: 5px ;
margin-left: 24px ;
font-size: 15px ;
flex: 1 1 0% ;
width: auto ;
}
.app-selector-img {
margin-right: 10px;
border-radius: 5px;
}
.app-selector-menu {
margin-top: 0;
border-radius: 5px;
}
.app-selector-menu > div:last-of-type {
top: 12px ;
}
.app-selector-menu ul {
padding-top: 0 ;
padding-bottom: 0 ;
}
.app-selector-item {
display: inline-flex ;
align-items: center ;
max-height: 500px ;
overflow-y: auto ;
width: 256px
}
.selected-app {
background-color: #fafafa ;
color: #000 ;
}
.app-selector-current {
text-transform: none ;
}
.header-icon:hover {
background-color: white ;
}
.flow-nav-content {
display: flex;
justify-content: flex-end;
width: 70%;
margin-right: 12px;
}
.flow-nav-item {
margin-right: 12px;
font-size: 24px;
}
.userhead {
height: 30px;
width: 30px;
border-radius: 50%;
margin-top: -4px;
}
.profilepop {
min-width: 220px ;
min-height: 100px ;
border-radius: 5px ;
overflow: visible ;
}
.proheadingpopfilepop > div {
overflow: visible ;
}
.coloptbtn {
width: 100%;
border: 0 solid #EEE;
height: 35px;
background-color: #FFFFFF;
color: #5e5e5e;
margin-top: 0;
text-align: left;
padding-left: 12px;
font-size: 14px;
}
.coloptbtn:hover {
background-color: #EEE;
color: black;
}
.headingpop {
height: 40px;
padding: 10px 10px 10px 12px;
border-bottom: 1px solid #e0e0e0;
margin-bottom: 0;
font-size: 11pt;
font-weight: 400;
color: #333;
text-transform: capitalize;
font-family: 'Verdana';
}
.joyride-beacon {
display: inline-block;
height: 26px;
position: relative;
width: 26px;
}
.joyride-beacon__inner {
animation: joyride-beacon-inner 1.2s infinite ease-in-out;
background-color: #4f8ef7;
border-radius: 50%;
display: block;
height: 50%;
left: 50%;
opacity: 0.7;
position: relative;
top: 50%;
transform: translate(-50%, -50%);
width: 50%;
}
.joyride-beacon__outer {
animation: joyride-beacon-outer 1.2s infinite ease-in-out;
background-color: rgba(67, 189, 255, .2);
border: 1.44px solid #4f8ef7;
border-radius: 50%;
display: block;
box-sizing: border-box;
height: 100%;
left: 0;
opacity: 0.9;
position: absolute;
top: 0;
transform: translateY(-50%);
transform-origin: center;
width: 100%;
}
@keyframes joyride-beacon-outer {
0% {
transform: scale(1);
}
45% {
opacity: 0.7;
transform: scale(.75);
}
100% {
opacity: 0.9;
transform: scale(1);
}
}
@keyframes joyride-beacon-inner {
20% {
opacity: 0.9;
}
90% {
opacity: 0.7;
}
}
.manage_app_beacon {
left: -97px;
}
.new_table_beacon {
margin-left: -5px;
margin-top: 1px;
}
.feedback_beacon {
position: absolute;
margin-left: -35px;
margin-top: 23px;
border-color: #aab7c4;
}
.createBtnBeacon {
height: 34px;
width: 92px;
}
.createAppBtnLabel {
position: relative;
top: -12px;
left: -24px;
}
.joyride-beacon__outer {
background-color: rgba(255, 255, 255, 0.2);
border: 1.44px solid #ffffff;
}
.joyride-beacon__inner {
background-color: #ffffff;
}
.gps_ring {
border: 6px solid #4f8ef7;
-webkit-border-radius: 30px;
height: 18px;
width: 18px;
position: absolute;
-webkit-animation: pulsate 1s ease-out;
-webkit-animation-iteration-count: infinite;
opacity: 0.0;
}
.new_app_beacon {
position: relative;
left: -6px;
top: -2px;
}
.create_app_beacon {
text-align: center;
border-color: #fff;
top: 175px;
left: 48%;
}
.create_table_button_beacon{
border-color: #fff;
margin-left: 30px;
}
.create_table_beacon{
top: 53px;
}
.upgrade_plan_beacon{
position: absolute;
margin-left: -33px;
margin-top: 2px;
}
.first_login_beacon {
position: absolute;
}
.documentation_link_beacon {
position: absolute;
margin-left: -35px;
margin-top: 23px;
}
@-webkit-keyframes pulsate {
0% {
-webkit-transform: scale(0.1, 0.1);
opacity: 0.0;
}
50% {
opacity: 1.0;
}
100% {
-webkit-transform: scale(1.2, 1.2);
opacity: 0.0;
}
}