UNPKG

ep_profile_modal

Version:
382 lines (360 loc) 8.05 kB
.ep_profile_formModal_overlay{ position: fixed; width: 100%; height: 100%; top: 0; left: 0; right: 0; bottom: 0; background-color: rgba(0,0,0,0.5); z-index: 9998; cursor: pointer; transform: scale(.7); opacity: 0; transition: all .3s cubic-bezier(.74,-.05,.27,1.75); display: none; } .ep_profile_formModal_overlay_show { transform: scale(1) !important; opacity: 1 !important; visibility: visible !important; } .ep_profile_formModal{ font-family: Roboto, RobotoDraft, Helvetica, Arial, sans-serif; width: 587px; height: 297px; /* background-color: #fff; */ position: absolute; visibility: hidden; overflow: hidden; color: rgb(32, 33, 36); z-index: 500; transition: all .3s; /* border-radius: 0 0 6px 6px; */ box-shadow: 1px 1px 4px rgb(87, 98, 115, .1); /* border: 1px solid #e6e8e9; */ font-size: 14px; transform: scale(.7); opacity: 0; transition: all .3s cubic-bezier(.74,-.05,.27,1.75); z-index: 9999; top: 0; bottom: 0; margin: auto; left: 0; right: 0; } .ep_profile_formModal_show { transform: scale(1) !important; opacity: 1 !important; visibility: visible !important; } #ep_profile_formModal_msform { width: 100%; text-align: center; position: relative; height: 100%; } #ep_profile_formModal_msform fieldset { background: white; border: 0 none; border-radius: 9px; box-shadow: 0 0 15px 1px rgba(0, 0, 0, 0.4); box-sizing: border-box; width: 100%; height: 100%; /* height: 278px; */ position: relative; padding: 21px 26px 21px 26px; } /*Hide all except first fieldset*/ #ep_profile_formModal_msform fieldset:not(:first-of-type) { display: none; } .lable_ep_profile_FormModal_section_image_big{ width : 100px } /*inputs*/ #ep_profile_formModal_msform input, #msform textarea { padding-left: 14px; padding-top: 17px; padding-bottom: 18px; width: 100%; box-sizing: border-box; color: #2C3E50; background: #EFEFEF; box-shadow: 0px 2px 0px rgba(0, 0, 0, 0.25); border-radius: 4px; margin-top: 37px; height: 54px; font-family: Roboto, RobotoDraft, Helvetica, Arial, sans-serif; font-style: normal; font-weight: normal; font-size: 16px; line-height: 19px; /* identical to box height */ color: #474747; } /*buttons*/ .skip .action-button { width: 100px; background:none; font-weight: bold; color: black; border: 0 none; border-radius: 1px; cursor: pointer; padding: 10px 5px; margin: 10px 5px; } #ep_profile_formModal_msform .skip-button { font-family: Roboto, RobotoDraft, Helvetica, Arial, sans-serif; width: 111px; height: 48px; border: 0px; cursor: pointer; /* padding: 10px 5px; */ margin: 0px 10px; float: right; background: #EFEFEF; box-shadow: 0px 2px 0px rgba(0, 0, 0, 0.25); border-radius: 4px; font-style: normal; font-weight: normal; font-size: 18px; line-height: 21px; /* display: flex; */ align-items: center; text-align: center; color: #212121; margin-top: 40px; padding-top: 14px; padding-left: 38px; padding-right: 38px; padding-bottom: 13px; } #ep_profile_formModal_msform .ep_profile_modal_section_image_big{ margin-bottom: 0px; width: 96px; height: 96px; border-radius: 0; } #ep_profile_formModal_msform .clear-button { width: 100px; background: none; font-weight: bold; color: #2678ff; /* border: 0 none; */ cursor: pointer; /* padding: 10px 5px; */ font-size: 13px; /* margin: 10px 21px; */ float: right; } #ep_profile_formModal_msform .upload-button { font-style: normal; font-weight: 500; font-size: 18px; line-height: 21px; align-items: center; text-align: center; color: #3873E0; cursor: pointer; } #ep_profile_formModal_msform .action-button { width: 111px; height: 48px; font-weight: bold; border: 0 none; cursor: pointer; /* padding: 10px 5px; */ /* margin: 10px 0px; */ float: right; background: #3873E0; box-shadow: 0px 2px 0px #2255B5; border-radius: 4px; font-family: Roboto; font-style: normal; font-weight: 500; font-size: 18px; line-height: 21px; /* display: flex; */ align-items: center; text-align: center; color: #FFFFFF; margin-top: 40px; padding-top: 14px; padding-left: 36px; padding-right: 37px; padding-bottom: 13px; } /* #ep_profile_formModal_msform .skip-button:hover{ box-shadow: 0 0 0 2px white, 0 0 0 3px #ccc; } */ /* #ep_profile_formModal_msform .action-button:hover, #ep_profile_formModal_msform .action-button:focus { box-shadow: 0 0 0 2px white, 0 0 0 3px #2255B5; } */ /*headings*/ .fs-title { font-size: 15px; text-transform: uppercase; color: #2C3E50; margin-bottom: 10px; } .fs-subtitle { font-weight: normal; font-size: 13px; color: #666; /* margin-bottom: 20px; */ margin-top:12px; text-align: left; } /*progressbar*/ #progressbar { margin-bottom: 30px; overflow: hidden; /*CSS counters to number the steps*/ counter-reset: step; } #progressbar li { list-style-type: none; color: white; text-transform: uppercase; font-size: 9px; width: 33.33%; float: left; position: relative; } #progressbar li:before { content: counter(step); counter-increment: step; width: 20px; line-height: 20px; display: block; font-size: 10px; color: #333; background: white; border-radius: 3px; margin: 0 auto 5px auto; } /*progressbar connectors*/ #progressbar li:after { content: ''; width: 100%; height: 2px; background: white; position: absolute; left: -50%; top: 9px; z-index: -1; /*put it behind the numbers*/ } #progressbar li:first-child:after { /*connector not needed before the first step*/ content: none; } /*marking active/completed steps green*/ /*The number of the step and the connector before it = green*/ #progressbar li.active:before, #progressbar li.active:after{ background: #27AE60; color: white; } .lable_ep_profile_modalForm_clear_button{ float: right; } .ep_profile_formModal_topGroup{ width : 100%; height: 48px; } .ep_profile_formModal_topIcon{ background-image: url("../../img/faceIcon.png") ; width: 48px; height: 48px; float: left; } .ep_profile_formModal_topHeader{ font-style: normal; font-weight: normal; font-size: 22px; line-height: 26px; font-family: Roboto, RobotoDraft, Helvetica, Arial, sans-serif; color: #000000; } .ep_profile_formModal_topSubHeader{ font-family: Roboto, RobotoDraft, Helvetica, Arial, sans-serif; font-style: normal; font-weight: normal; font-size: 13px; line-height: 15px; color: #696969; float: left; } .ep_profile_formModal_topHeaderGroup{ float: left; padding-left: 15px; } .ep_profile_formModal_topClose{ background-image: url("../../img/close.png"); width: 14px; height: 14px; float: right; cursor: pointer; } .ep_profile_formModal_photoBox{ width : 100%; height: 64px; margin-top: 30px; } .lable_ep_profile_modalForm_button{ float: left; margin-top: 20px; margin-left: 10px; } .ep_profile_formModalsection_image{ border-radius: 100px; width: 64px; height: 64px; background: url("../../img/user.png") no-repeat 50% 50%; background-size: 64px; cursor: pointer; } .lable_ep_profile_modalForm_image{ float: left; } @media print{ .ep_profile_formModal{ width:330px } .ep_profile_formModal_topHeader{ font-size: 15px; line-height: 14px; } .ep_profile_formModal_topSubHeader{ font-size: 11px; line-height: 19px; } #ep_profile_formModal_msform .action-button{ margin-top: 18px!important; } #ep_profile_formModal_msform .skip-button{ margin-top: 19px !important; } } @media (max-width: 720px){ .ep_profile_formModal{ width:330px } .ep_profile_formModal_topHeader{ font-size: 15px; line-height: 14px; } .ep_profile_formModal_topSubHeader{ font-size: 11px; line-height: 19px; } #ep_profile_formModal_msform .action-button{ margin-top: 18px!important; } #ep_profile_formModal_msform .skip-button{ margin-top: 19px!important; } }