mirror of
https://github.com/lubuntu-team/lubuntu.me.git
synced 2025-08-16 00:14:03 +00:00
348 lines
6.3 KiB
CSS
348 lines
6.3 KiB
CSS
/**
|
|
*=============================================================
|
|
* Essential Addons Elementor Admin Settings Page Styles
|
|
*=============================================================
|
|
*/
|
|
|
|
/* General Style */
|
|
|
|
.eael-header-bar {
|
|
height: auto;
|
|
padding: 20px;
|
|
background: #fff;
|
|
border: 1px solid rgba( 0,0,0,0.1 );
|
|
-webkit-display: flex;
|
|
display: flex;
|
|
-webkit-justify-content: flex-end;
|
|
justify-content: flex-end;
|
|
-webkit-align-items: center;
|
|
align-items: center;
|
|
}
|
|
.eael-header-bar .title {
|
|
font-size: 28px;
|
|
font-weight: 600;
|
|
margin: 0px;
|
|
line-height: 1;
|
|
}
|
|
|
|
.eael-header-left,
|
|
.eael-header-right {
|
|
-webkit-flex-grow: 1;
|
|
flex-grow: 1;
|
|
}
|
|
.eael-header-right {
|
|
text-align: right;
|
|
}
|
|
.eael-settings-tabs {
|
|
padding-top: 15px;
|
|
}
|
|
|
|
.eael-settings-tab h4 {
|
|
font-size: 22px;
|
|
}
|
|
|
|
.eael-settings-tab p {
|
|
font-size: 14px;
|
|
}
|
|
|
|
.eael-settings-tabs ul {
|
|
width: 100%;
|
|
height: auto;
|
|
margin: 25px 0px 20px 0px;
|
|
}
|
|
.eael-settings-tabs ul li {
|
|
display: inline-block;
|
|
}
|
|
.eael-settings-tabs ul li a {
|
|
padding: 15px 20px;
|
|
background: #ECF0F1;
|
|
color: #646464;
|
|
font-size: 16px;
|
|
font-weight: 600;
|
|
text-transform: uppercase;
|
|
text-decoration: none;
|
|
border: 1px solid rgba( 0,0,0,0.1 );
|
|
border-bottom: none;
|
|
}
|
|
.eael-settings-tab {
|
|
background: #fff;
|
|
padding: 15px 25px;
|
|
margin-top: -8px;
|
|
border: 1px solid rgba( 0,0,0,0.1 );
|
|
border-top: none;
|
|
position: relative;
|
|
}
|
|
.eael-settings-tabs ul li.ui-tabs-active a {
|
|
background: #fff;
|
|
outline: none;
|
|
box-shadow: none;
|
|
color: #343434;
|
|
}
|
|
p.title {
|
|
font-size: 14px;
|
|
font-weight: 700;
|
|
color: #333;
|
|
text-transform: uppercase;
|
|
margin-bottom: 0px;
|
|
line-height: 20px;
|
|
}
|
|
p.desc {
|
|
font-size: 12px;
|
|
color: #4d4d4d;
|
|
margin-bottom: 15px !important;
|
|
padding-bottom: 15px;
|
|
border-bottom: 1px solid rgba( 0,0,0,0.1 );
|
|
}
|
|
.eael-settings-tab p.eael-elements-control-notice {
|
|
color: #42418e;
|
|
font-size: 16px;
|
|
border: 1px solid #42418e;
|
|
padding: 10px;
|
|
text-align: center;
|
|
display: block;
|
|
}
|
|
.eael-form-control {
|
|
width: 100%;
|
|
}
|
|
textarea.eael-form-control {
|
|
padding: 15px;
|
|
font-size: 14px;
|
|
font-weight: 600;
|
|
color: #5d5d5d;
|
|
}
|
|
.row {
|
|
width: 100%;
|
|
height: auto;
|
|
display: flex;
|
|
flex-flow: row wrap;
|
|
justify-content: space-between;
|
|
align-content: flex-start;
|
|
padding: 15px 0px;
|
|
}
|
|
.col-full {
|
|
width: 100%;
|
|
height: auto;
|
|
}
|
|
.col-half {
|
|
width: 49%;
|
|
height: auto;
|
|
}
|
|
.col-one-third {
|
|
width: 32%;
|
|
height: auto;
|
|
}
|
|
/* Checkbox Style */
|
|
.eael-checkbox {
|
|
font-size: 24px;
|
|
}
|
|
.eael-checkbox input[type=checkbox] {
|
|
visibility: hidden;
|
|
display: none;
|
|
}
|
|
.eael-checkbox label {
|
|
width: 2em;
|
|
height: 1em;
|
|
position: relative;
|
|
cursor: pointer;
|
|
display: block;
|
|
}
|
|
.eael-checkbox label:before {
|
|
content: '';
|
|
position: absolute;
|
|
width: 2em;
|
|
height: 1em;
|
|
left: 0.1em;
|
|
transition: background 0.1s 0.1s ease;
|
|
background: #CBCFD0;
|
|
border-radius: 50px;
|
|
}
|
|
.eael-checkbox label:after {
|
|
content: '';
|
|
position: absolute;
|
|
width: .8em;
|
|
height: .8em;
|
|
border-radius: 100%;
|
|
left: .2em;
|
|
top: .1em;
|
|
transition: all 0.2s ease;
|
|
box-shadow: 0 0 0 5px #fcfff4 inset;
|
|
background: #CBCFD0;
|
|
z-index: 2;
|
|
animation: switch-off .3s ease-out;
|
|
}
|
|
.eael-checkbox input[type=checkbox]:checked + label:before {
|
|
background: #70C1B3;
|
|
box-shadow: inset 0px 1px 1px rgba(84, 152, 140, 0.5);
|
|
}
|
|
.eael-checkbox input[type=checkbox]:checked + label:after {
|
|
left: 1.2em;
|
|
background: #70C1B3;
|
|
animation: switch-on .3s ease-out;
|
|
}
|
|
|
|
@keyframes switch-on {
|
|
50% {
|
|
transform: scaleX(1.3);
|
|
}
|
|
}
|
|
|
|
@keyframes switch-off {
|
|
50% {
|
|
transform: scaleX(1.3);
|
|
}
|
|
}
|
|
/* Footer Style */
|
|
|
|
.eael-settings-footer {
|
|
padding: 20px 25px 15px 25px;
|
|
background: #fff;
|
|
margin-top: 10px;
|
|
border: 1px solid rgba( 0,0,0,0.1 );
|
|
}
|
|
.eael-settings-footer .submit {
|
|
padding: 0px;
|
|
}
|
|
.eael-settings-footer p.submit {
|
|
margin-top: 0px;
|
|
}
|
|
|
|
.eael-settings-tab img {
|
|
max-width: 100%;
|
|
}
|
|
.button.eael-btn {
|
|
background-color: #0099CC;
|
|
color: #fff;
|
|
padding: 6px 20px;
|
|
border: none;
|
|
box-shadow: none;
|
|
font-size: 14px;
|
|
height: auto;
|
|
text-transform: uppercase;
|
|
text-shadow: none;
|
|
letter-spacing: .05em;
|
|
}
|
|
|
|
.button.eael-btn:hover, .button.eael-btn:focus {
|
|
background-color: #1E96F1;
|
|
color: #fff;
|
|
}
|
|
|
|
.eael-save-btn-wrap {
|
|
margin: 30px 0 20px;
|
|
}
|
|
|
|
.eael-save-btn-wrap .eael-btn {
|
|
background-color: #3CCD94;
|
|
color: #fff;
|
|
padding: 10px 20px
|
|
}
|
|
.eael-save-btn-wrap .eael-btn:hover, .eael-save-btn-wrap .eael-btn:focus {
|
|
background-color: #02CC7B;
|
|
color: #fff;
|
|
}
|
|
|
|
.eael-btn.eael-demo-btn {
|
|
background-color: #42418e;
|
|
color: #fff;
|
|
}
|
|
.eael-btn.eael-demo-btn:hover, .eael-btn.eael-demo-btn:focus {
|
|
background-color: #FF0188;
|
|
color: #fff;
|
|
}
|
|
|
|
|
|
.eael-btn.eael-license-btn {
|
|
background-color: #0dc9c3;
|
|
}
|
|
.eael-btn.eael-license-btn:hover, .eael-btn.eael-license-btn:focus {
|
|
background-color: #08d1ca;
|
|
}
|
|
.eael-btn.eael-demo-btn, .eael-btn.eael-license-btn, .eael-btn.eael-review-btn {
|
|
padding: 10px;
|
|
display: block;
|
|
max-width: 250px;
|
|
margin-bottom: 15px;
|
|
text-align: center;
|
|
font-size: 13px;
|
|
}
|
|
|
|
.premium-elements-title {
|
|
margin: 50px 0 30px;
|
|
}
|
|
|
|
.premium-elements-title img {
|
|
width: 75px;
|
|
float: left;
|
|
}
|
|
|
|
.premium-elements-title .section-title {
|
|
color: #157EFB;
|
|
margin: 35px 5px 0;
|
|
text-transform: uppercase;
|
|
letter-spacing: 1px;
|
|
font-size: 20px;
|
|
border-bottom: 6px double #157EFB;
|
|
padding-bottom: 10px;
|
|
display: inline-block;
|
|
}
|
|
|
|
.go-premium .eael-btn.eael-license-btn {
|
|
margin-top: 30px;
|
|
}
|
|
|
|
.go-premium img {
|
|
width: 100%;
|
|
max-width: 400px;
|
|
display: block;
|
|
float: right;
|
|
}
|
|
.eael-notice {
|
|
background-color: #F7F6D4;
|
|
padding: 10px 15px;
|
|
border-radius: 5px;
|
|
box-shadow: 0 0 15px 0 rgba(0,0,0, .15);
|
|
max-width: 90%;
|
|
color: #9A7223;
|
|
}
|
|
|
|
.eael-notice h5 {
|
|
font-size: 1.2em;
|
|
font-weight: bold;
|
|
}
|
|
|
|
.essential-addons-community-link {
|
|
background-color: #475A96;
|
|
margin: 15px 0;
|
|
display: inline-block;
|
|
border-radius: 3px;
|
|
}
|
|
|
|
.essential-addons-community-link:hover {
|
|
background-color: #3351b2;
|
|
}
|
|
|
|
.essential-addons-community-link a {
|
|
color: #fff;
|
|
text-decoration: none;
|
|
padding: 15px 20px;
|
|
font-size: 1.4em;
|
|
display: flex;
|
|
align-items: center;
|
|
align-content: center;
|
|
}
|
|
|
|
/* Header Button */
|
|
.eael-header-bar .eael-btn {
|
|
background-color: #3CCD94;
|
|
}
|
|
.eael-header-bar .eael-btn:hover, .eael-header-bar .eael-btn:focus {
|
|
background-color: #02CC7B;
|
|
}
|
|
.eael-save-btn-wrap .eael-btn.save-now,
|
|
.eael-header-bar .eael-btn.save-now {
|
|
background: #E74C3C;
|
|
}
|
|
.eael-save-btn-wrap .eael-btn.save-now:hover,
|
|
.eael-header-bar .eael-btn.save-now:hover {
|
|
background: #ff5544;
|
|
} |