2025-04-22 18:18:42 +02:00

761 lines
13 KiB
CSS
Executable File

.mb-1 {
margin-bottom: 1rem;
}
.pp-loader {
position: absolute;
top: 115px;
left: 1060px;
width: 25px;
height: 25px;
border-radius: 50%;
border: 4px solid #f0f0f1;
border-top: 4px solid #7049ba;
animation: spin 1s linear infinite;
z-index: 9999;
}
@keyframes spin {
0% {
transform: rotate(0deg);
}
100% {
transform: rotate(360deg);
}
}
input[type=color],
input[type=date],
input[type=datetime-local],
input[type=datetime],
input[type=email],
input[type=month],
input[type=number],
input[type=password],
input[type=search],
input[type=tel],
input[type=text],
input[type=time],
input[type=url],
input[type=week],
select,
textarea {
box-shadow: 0 0 0 transparent;
border: 1px solid rgba(0, 0, 0, 0.1882352941);
background-color: #fff;
color: #253142;
}
.grid1 {
display: grid;
grid-template-columns: repeat(1, 1fr);
grid-gap: 20px;
grid-auto-flow: dense;
padding: 1rem;
}
.grid2 {
display: grid;
grid-template-columns: repeat(2, 1fr);
grid-gap: 20px;
grid-auto-flow: dense;
padding: 1rem;
}
.grid3 {
display: grid;
grid-template-columns: repeat(3, 1fr);
grid-gap: 20px;
grid-auto-flow: dense;
padding: 1rem;
}
.grid4 {
display: grid;
grid-template-columns: repeat(4, 1fr);
grid-gap: 20px;
grid-auto-flow: dense;
padding: 1rem;
}
.grid5 {
display: grid;
grid-template-columns: repeat(5, 1fr);
grid-gap: 20px;
grid-auto-flow: dense;
padding: 1rem;
}
.grid6 {
display: grid;
grid-template-columns: repeat(6, 1fr);
grid-gap: 20px;
grid-auto-flow: dense;
padding: 1rem;
}
.grid-3-1 {
display: grid;
grid-template-columns: 3fr 1fr;
grid-gap: 0px;
grid-auto-flow: dense;
padding: 1rem;
}
.noticeq {
padding: 10px;
background-color: red;
border-left: 4px solid #0073aa;
}
.noticeq h1 {
margin: 0;
font-size: 24px;
font-weight: bold;
}
.noticeq p {
margin: 0;
font-size: 14px;
}
.notice-dismiss {
float: right;
margin-top: 5px;
margin-right: 5px;
background: none;
border: none;
color: #333;
}
.notice-dismiss:before {
content: "\f153";
font-family: dashicons;
font-size: 20px;
line-height: 1;
}
.pp-button {
display: block;
width: 100%;
padding: 10px 20px;
border: none;
font-weight: bold;
cursor: pointer;
transition: background-color 0.3s ease;
}
.pp-button:hover {
background-color: #e5e5e5;
}
.pp-input-wrapper label.pp-button-upload {
padding: 8px 12px;
color: white;
cursor: pointer;
transition: background-color 0.3s ease;
}
.pp-input-wrapper label.pp-button-upload:active {
background-color: #3e8e41;
}
.btn-save {
display: block;
width: 100%;
padding: 13px 20px;
border: none;
font-weight: bold;
cursor: pointer;
transition: background-color 0.3s ease;
color: #fff;
}
.btn-reset {
display: block;
width: 100%;
padding: 13px 20px;
border: none;
font-weight: bold;
cursor: pointer;
transition: background-color 0.3s ease;
color: #253142;
}
.color-schemes {
display: flex;
flex-wrap: wrap;
justify-content: center;
}
.color-schemes .color-option {
display: flex;
justify-content: center;
width: 100%;
padding: 5px;
margin-bottom: 0px;
}
.color-schemes .color-option .color-square {
width: 20px;
height: 20px;
margin-right: 10px;
border: 1px solid #ccc;
}
.color-schemes .color1 {
background-color: #ff0000;
}
.color-schemes .color2 {
background-color: #00ff00;
}
.color-schemes .color3 {
background-color: #0000ff;
}
.color-schemes .color4 {
background-color: #ffff00;
}
.color-schemes .color5 {
background-color: #ff9900;
}
.color-schemes .color6 {
background-color: #6600cc;
}
.color-schemes .color7 {
background-color: #0099ff;
}
.color-schemes .color8 {
background-color: #00cc00;
}
.color-schemes .color9 {
background-color: #ff3399;
}
.color-schemes .color10 {
background-color: #ffcc00;
}
.color-schemes .color11 {
background-color: #3366ff;
}
.color-schemes .color12 {
background-color: #ff66cc;
}
#pp-version {
font-size: 14px;
color: blue;
}
.pp-version-number {
font-weight: bold;
}
.pp-wordpress-version {
font-weight: bold;
color: red;
padding: 5px 10px;
}
.pp-plugin-version {
font-weight: bold;
color: green;
}
.pp-current-year {
font-weight: bold;
color: black;
}
.pp-palette {
font-weight: bold;
color: pink;
}
@keyframes heartbeat {
0% {
transform: scale(1);
}
50% {
transform: scale(1.2);
}
100% {
transform: scale(1);
}
}
.pp-made-with-heart {
display: inline-block;
vertical-align: middle;
animation: heartbeat 1s infinite;
}
.pp-heart {
color: red;
padding-right: 4px;
}
.pp-made-with-text {
display: inline-block;
vertical-align: middle;
margin-left: 10px;
}
#pp_dashBoard .pp-input-wrapper input[type=number] {
border: 1px solid #fff;
}
.pp-borderradius-btn {
border: 1px solid rgba(0, 0, 0, 0.1882352941);
color: #333;
padding: 5px 10px;
cursor: pointer;
}
.pp-borderradius-btn.active {
background-color: #ccc;
}
.pp-btns-borderradius {
display: grid;
grid-template-columns: repeat(3, 1fr);
align-items: center;
padding: 10px;
border: 1px solid rgba(0, 0, 0, 0.1882352941);
}
.pp-btns-borderradius button {
width: 100%;
}
.pp-form {
display: grid;
grid-template-columns: 200px 700px 200px;
gap: 0px;
border: 1px solid rgba(0, 0, 0, 0.1882352941);
}
@media (max-width: 782px) {
.pp-form {
grid-template-columns: 1fr;
}
}
.pp-settings {
background-color: #fff;
border-right: 1px solid rgba(0, 0, 0, 0.1882352941);
color: #253142;
}
.pp-settings a.settings-active {
color: #fff;
}
.pp-menu-link {
display: block;
border-bottom: 1px solid rgba(0, 0, 0, 0.1882352941);
text-decoration: none;
color: #253142;
position: relative;
transition: padding-left 0.3s ease;
padding: 10px;
}
.pp-menu-link:hover {
color: #fff;
}
.pp-menu-link:last-child {
margin-bottom: 0px;
}
.pp-menu-link:focus, .pp-menu-link:active {
outline: none;
box-shadow: none;
}
.pp-menu-link::before {
content: "";
font-family: "dashicons";
position: absolute;
left: 0;
top: 50%;
transform: translateY(-50%);
transition: transform 0.3s ease;
border-right: 1px solid rgba(0, 0, 0, 0.1882352941);
padding: 5px 10px;
height: auto;
}
.pp-menu-link.icon-dashboard::before {
content: "\f111";
}
.pp-menu-link.icon-login::before {
content: "\f307";
}
.pp-menu-link.icon-topmenu::before {
content: "\f342";
}
.pp-menu-link.icon-leftmenu::before {
content: "\f340";
}
.pp-menu-link.icon-btns::before {
content: "\f11a";
}
.pp-menu-link.icon-reset::before {
content: "\f531";
}
.pp-menu-link:hover {
padding-left: 55px;
}
.pp-menu {
padding: 0;
}
.pp-menu a {
padding-left: 50px;
}
.pp-menu h2 {
color: #fff;
padding: 16px;
text-align: center;
margin: 0;
border-bottom: 1px solid rgba(0, 0, 0, 0.1882352941);
}
.pp-content {
background-color: #fff;
}
.pp-content h1 {
text-align: center;
font-weight: 700;
margin-bottom: 20px;
color: red;
}
.pp-sidebar {
position: relative;
background-color: #fff;
border-left: 1px solid rgba(0, 0, 0, 0.1882352941);
border-right: 1px solid rgba(0, 0, 0, 0.1882352941);
}
.pp-sidebar .btnsave {
display: block;
border: none;
cursor: pointer;
position: absolute;
bottom: 0px;
left: 50%;
transform: translateX(-50%);
width: 100%;
color: #fff;
}
.pp-card-content {
display: none;
}
.pp-card-content.active {
display: block;
}
.pp-container {
width: 100%;
max-width: 1100px;
padding: 0 0 0 1rem;
}
.pp-note {
background-color: #fff;
color: black;
border: 1px solid rgba(0, 0, 0, 0.1882352941);
padding: 1rem 1.5rem;
margin: 1rem 0;
display: flex;
flex-wrap: wrap;
justify-content: flex-start;
align-items: center;
}
.pp-note span {
margin-right: 1rem;
}
.pp-note .pp-note-content h4 {
margin: 0;
font-size: 14px;
}
.pp-note .pp-note-content p {
margin: 0;
font-size: 10px;
font-weight: 300;
}
.pp-head {
background-color: #fff;
padding: 15px 15px 15px 20px;
border-bottom: 1px solid rgba(0, 0, 0, 0.1882352941);
display: flex;
}
.pp-head .pp-logo {
width: 50px;
height: 50px;
margin-right: 1rem;
padding-right: 1rem;
border-right: 1px solid rgba(0, 0, 0, 0.1882352941);
}
.pp-head .pp-logo img {
width: 50px;
height: 50px;
}
.pp-head .pp-logoname {
position: relative;
}
.pp-head .pp-logoname h1 {
font-size: 24px;
margin: 7px 0;
background: linear-gradient(to bottom right, #7049ba, #e95095);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}
.pp-head .pp-logoname p {
margin: 0;
font-size: 12px;
}
.pp-head .pp-logoname span {
position: absolute;
left: 120px;
top: 0px;
padding: 3px 5px;
border: 1px solid rgba(0, 0, 0, 0.1882352941);
}
.pp-footer {
background-color: #fff;
position: fixed;
bottom: 0;
width: 100%;
padding: 1rem;
border-bottom: 1px solid rgba(0, 0, 0, 0.1882352941);
display: flex;
justify-content: space-evenly;
align-items: center;
}
.pp-section {
text-align: center;
background-color: #fff;
}
.pp-section-head {
padding: 1rem;
text-align: center;
border-bottom: 1px solid rgba(0, 0, 0, 0.1882352941);
}
.pp-section-head h2 {
padding: 0;
margin: 0;
}
.pp-section-body {
background-color: #fff;
text-align: center;
}
.pp-section-footer {
text-align: center;
padding: 0 10px;
border-top: 1px solid rgba(0, 0, 0, 0.1882352941);
}
.pp-section-footer p {
font-size: 12px;
}
.pp-card {
background-color: #fff;
margin-top: 0;
padding: 0;
border: 1px solid rgba(0, 0, 0, 0.1882352941);
height: auto;
}
.pp-card-head {
padding: 1rem;
text-align: center;
border-bottom: 1px solid rgba(0, 0, 0, 0.1882352941);
color: black;
}
.pp-card-head label {
margin: 0;
font-size: 15px;
font-weight: 500;
}
.pp-card-body {
padding: 1rem;
margin-bottom: 0;
}
.pp-card-body h2 {
margin: 0;
}
.pp-card-body p {
margin: 0;
padding: 0;
}
.pp-card-footer {
border-top: 1px solid rgba(0, 0, 0, 0.1882352941);
}
.pp-card-footer p {
font-size: 10px;
}
.pp-card-body-login .pp-color-picker-fields .pp-color-picker-wrapper:first-child {
padding: 10px;
}
.pp-card-body-login .pp-color-picker-fields .pp-color-picker-wrapper:last-child {
padding: 10px;
}
.pp-input-wrapper input[type=text],
.pp-input-wrapper input[type=number] {
width: 100%;
padding: 5px;
text-align: center;
border: 1px solid rgba(0, 0, 0, 0.1882352941);
}
.pp-input-wrapper input[type=text] {
text-align: left;
border: 1px solid rgba(0, 0, 0, 0.1882352941);
}
.pp-input-wrapper input[type=file] {
display: none;
}
.pp-radio-group input[type=radio] {
display: none;
}
.pp-radio-group input[type=radio]:checked + label {
color: #253142;
}
.pp-color-picker-fields {
display: flex;
justify-content: center;
margin-top: 1rem;
}
.pp-color-picker-wrapper {
width: 100%;
}
.pp-color-picker-wrapper span {
width: 100%;
}
input.spectrum.with-add-on {
padding: 5px;
width: 100%;
}
.sp-original-input-container .sp-add-on {
width: 50px !important;
}
.pp-radio-group {
display: flex;
align-items: center;
}
.pp-radio-group input[type=radio] {
margin-right: 5px;
}
.pp-radio-group label {
display: inline-block;
width: 50%;
padding: 10px 0;
font-size: 12px;
border-bottom: 1px solid rgba(0, 0, 0, 0.1882352941);
cursor: pointer;
box-sizing: border-box;
text-align: center;
color: #253142;
}
.pp-input-wrapper {
position: relative;
}
.pp-input-wrapper button {
position: absolute;
top: 50%;
transform: translateY(-50%);
width: 40px;
height: 40px;
cursor: pointer;
border: 1px solid transparent;
}
.pp-input-wrapper button.pp-left {
left: 0;
border-left: 1px solid rgba(0, 0, 0, 0.1882352941);
border-right: 1px solid rgba(0, 0, 0, 0.1882352941);
border-top: 1px solid rgba(0, 0, 0, 0.1882352941);
}
.pp-input-wrapper button.pp-center {
left: 50%;
transform: translateX(-50%) translateY(-50%);
}
.pp-input-wrapper button.pp-right {
right: 0px;
border-left: 1px solid rgba(0, 0, 0, 0.1882352941);
border-right: 1px solid rgba(0, 0, 0, 0.1882352941);
border-top: 1px solid rgba(0, 0, 0, 0.1882352941);
}
.pp-input-wrapper img {
padding-top: 1rem;
}
.pp-input-upload {
margin-top: 1rem;
}
.pp-input-upload label {
display: block;
}
.pp-hidden {
display: none;
}
#mceu_25 div.mce-toolbar-grp > div {
padding: 10px !important;
}
#wpcontent,
#wpfooter {
margin-left: 140px !important;
}
@media (max-width: 960px) {
#wpcontent,
#wpfooter {
margin-left: 0 !important;
}
}
.folded #wpcontent,
.folded #wpfooter {
margin-left: 16px !important;
}
.wp-picker-container .wp-color-result.button {
min-height: 30px;
}
#adminmenu .wp-has-current-submenu .wp-submenu .wp-submenu-head,
#adminmenu .wp-menu-arrow,
#adminmenu .wp-menu-arrow div,
#adminmenu li.current a.menu-top,
#adminmenu li.wp-has-current-submenu a.wp-has-current-submenu {
background: linear-gradient(to right, #7049ba, #e95095) !important;
color: #fff;
}
#wpbody-content {
padding-bottom: 0px;
}
#login {
width: 378px !important;
padding: 20% 0 0 !important;
margin: auto;
}/*# sourceMappingURL=css.css.map */