EngineGP/template/acp/css/style.css

694 lines
11 KiB
CSS
Raw Permalink Normal View History

2023-03-04 23:45:46 +00:00
@font-face {
font-family: 'Cuprum';
src: local('Cuprum'), local('Cuprum-Regular'), url('../fonts/cuprum.woff2') format('woff2'), url('../fonts/cuprum.woff') format('woff'), url('../fonts/cuprum.ttf') format('truetype');
font-weight: 400;
font-style: normal;
}
2023-03-04 23:45:46 +00:00
@font-face {
font-family: 'Cuprum';
src: local('Cuprum Italic'), local('Cuprum-Italic'), url('../fonts/cuprumitalic.woff2') format('woff2'), url('../fonts/cuprumitalic.woff') format('woff'), url('../fonts/cuprumitalic.ttf') format('truetype');
font-weight: 400;
font-style: italic;
}
2023-03-04 23:45:46 +00:00
@font-face {
font-family: 'Cuprum';
src: local('Cuprum Bold'), local('Cuprum-Bold'), url('../fonts/cuprumbold.woff2') format('woff2'), url('../fonts/cuprumbold.woff') format('woff'), url('../fonts/cuprumbold.ttf') format('truetype');
font-weight: 700;
font-style: normal;
}
2023-03-04 23:45:46 +00:00
@font-face {
font-family: 'Cuprum';
src: local('Cuprum Bold Italic'), local('Cuprum-BoldItalic'), url('../fonts/cuprumbolditalic.woff2') format('woff2'), url('../fonts/cuprumbolditalic.woff') format('woff'), url('../fonts/cuprumbolditalic.ttf') format('truetype');
font-weight: 700;
font-style: italic;
}
* {
padding: 0;
2023-03-04 23:45:46 +00:00
margin: 0;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
-ms-box-sizing: border-box;
-o-box-sizing: border-box;
box-sizing: border-box;
}
html {
background-color: #252b30;
2023-03-04 23:45:46 +00:00
}
body, header, main, footer {
width: 1200px;
2023-03-04 23:45:46 +00:00
}
main {
display: flex
2023-03-04 23:45:46 +00:00
}
html, body, main, .content, .sidebar, .sidebar-second, .height-max {
height: 100%;
font: 13px Cuprum;
2023-03-04 23:45:46 +00:00
}
body {
margin: 0 auto
2023-03-04 23:45:46 +00:00
}
main, header {
margin: 0 auto;
2023-03-04 23:45:46 +00:00
}
main {
display: table-cell;
2023-03-04 23:45:46 +00:00
background-color: #eef0f2;
}
header {
height: 43px;
}
a {
text-decoration: underline;
color: #222;
}
a:hover {
text-decoration: none;
}
input::-webkit-input-placeholder {
color: #d1d1d1;
text-overflow: ellipsis;
text-indent: 0px;
transition: text-indent 0.3s ease;
}
input::-moz-placeholder {
color: #d1d1d1;
text-overflow: ellipsis;
text-indent: 0px;
transition: text-indent 0.3s ease;
}
input:-moz-placeholder {
color: #d1d1d1;
text-overflow: ellipsis;
text-indent: 0px;
transition: text-indent 0.3s ease;
}
input:-ms-input-placeholder {
color: #d1d1d1;
text-overflow: ellipsis;
text-indent: 0px;
transition: text-indent 0.3s ease;
}
input:focus::-webkit-input-placeholder {
color: #d1d1d1;
text-overflow: ellipsis;
text-indent: 1000px;
transition: text-indent 0.3s ease;
}
input:focus::-moz-placeholder {
color: #d1d1d1;
text-overflow: ellipsis;
text-indent: 1000px;
transition: text-indent 0.3s ease;
}
input:focus:-moz-placeholder {
color: #d1d1d1;
text-overflow: ellipsis;
text-indent: 1000px;
transition: text-indent 0.3s ease;
}
input:focus:-ms-input-placeholder {
color: #d1d1d1;
text-overflow: ellipsis;
text-indent: 1000px;
transition: text-indent 0.3s ease;
}
textarea::-webkit-input-placeholder {
color: #d1d1d1;
}
textarea::-moz-placeholder {
color: #d1d1d1;
}
textarea:-moz-placeholder {
color: #d1d1d1;
}
textarea:-ms-input-placeholder {
color: #d1d1d1;
}
.sidebar, .sidebar-second, .content {
padding: 5px;
float: left;
}
.sidebar, .sidebar-second {
width: 200px;
}
.content {
width: 1000px;
}
.content-mini {
width: 800px;
}
.main {
margin: 5px;
}
.bg-gray {
background-color: #2e3439;
color: #8e9ca8;
}
.bg-gray-mild {
background-color: #3f464c;
}
.bg-white {
background-color: #ffffff;
}
.bg-green {
background-color: #00c09e;
}
.br-gray-top {
border-top: 1px solid #282e33;
}
.br-gray-bot {
border-bottom: 1px solid #282e33;
}
.hr-gray, .hr-white {
margin: 15px 0;
width: 100%;
height: 1px;
}
.hr-gray {
background-color: #282e33;
}
.hr-white {
background-color: #f3f4f7;
}
.sidebar > h3 {
font-size: 15px;
2023-03-04 23:45:46 +00:00
text-align: center;
line-height: 33px;
}
.sidebar > h5, .sidebar-second > h5 {
padding: 5px 10px;
2023-03-04 23:45:46 +00:00
font-size: 11px;
}
.sidebar > ul li, .sidebar-second > ul li {
list-style: none;
2023-03-04 23:45:46 +00:00
}
.sidebar > ul li a {
2023-03-04 23:45:46 +00:00
color: #8e9ca8;
font-size: 13px;
text-decoration: none;
padding: 7px;
display: block;
}
.sidebar > ul li a:hover {
2023-03-04 23:45:46 +00:00
background-color: #293035;
color: #c1d6e3;
2023-03-04 23:45:46 +00:00
}
.sidebar > ul li a:active, .sidebar .active {
2023-03-04 23:45:46 +00:00
background-color: #252b30;
color: #c1d6e3;
2023-03-04 23:45:46 +00:00
}
.sidebar > ul li a i {
font-size: 14px;
width: 22px;
2023-03-04 23:45:46 +00:00
}
.sidebar-second > h3 {
2023-03-04 23:45:46 +00:00
color: #008067;
text-align: right;
padding: 0 10px;
font-size: 12px;
line-height: 33px;
}
.sidebar-second > h3 i {
font-size: 14px;
float: left;
2023-03-04 23:45:46 +00:00
margin-top: 8px;
}
.sidebar-second > ul li a {
2023-03-04 23:45:46 +00:00
color: #b3babf;
font-size: 13px;
text-decoration: none;
padding: 7px;
display: block;
}
.sidebar-second > ul li a:hover {
2023-03-04 23:45:46 +00:00
background-color: #fafbfc;
color: #78858f;
2023-03-04 23:45:46 +00:00
}
.sidebar-second > ul li a:active, .sidebar-second .active {
2023-03-04 23:45:46 +00:00
background-color: #f3f4f7;
color: #78858f;
2023-03-04 23:45:46 +00:00
}
.sidebar-second > ul li a i {
font-size: 14px;
width: 22px;
2023-03-04 23:45:46 +00:00
}
.sidebar-second > ul li a span {
float: right;
2023-03-04 23:45:46 +00:00
font-size: 10px;
background-color: #EEE;
padding: 2px 5px;
border-radius: 50%;
}
.sidebar-second > h5 {
font-size: 14px;
2023-03-04 23:45:46 +00:00
color: #7e8890;
}
header > .content a {
2023-03-04 23:45:46 +00:00
color: #7b8893;
background-color: #2e3439;
padding: 5px 7px;
2023-03-04 23:45:46 +00:00
font-size: 14px;
text-decoration: none;
border-radius: 2px;
margin-left: 5px;
}
header > .content a:hover {
color: #abb7bf;
2023-03-04 23:45:46 +00:00
background-color: #2b3135;
}
header .fl-right {
2023-03-04 23:45:46 +00:00
float: right;
margin-top: 9px;
}
header .fl-left {
2023-03-04 23:45:46 +00:00
float: left;
margin-top: 9px;
}
.inputs input, .inputs select, .inputs textarea {
2023-03-04 23:45:46 +00:00
padding: 5px;
font-size: 12px;
color: #000;
border: 1px solid #E8EBF0;
box-sizing: border-box;
outline: 0;
}
.inputs textarea {
resize: vertical;
2023-03-04 23:45:46 +00:00
width: 100%;
}
.inputs-max input[type="text"], .inputs-max select {
width: 100%;
2023-03-04 23:45:46 +00:00
}
label {
2023-03-04 23:45:46 +00:00
cursor: pointer;
display: inline-block;
padding: 5px 10px;
border-radius: 10px;
border: 1px solid #EEE;
background-color: #FAFAFA;
margin-right: 5px;
2023-03-04 23:45:46 +00:00
}
label input {
2023-03-04 23:45:46 +00:00
cursor: pointer;
float: left;
margin: 1px 5px;
}
table {
2023-03-04 23:45:46 +00:00
width: 100%;
background-color: #ffffff;
box-shadow: 1px 1px 10px #e0e0e0;
border-collapse: collapse;
2023-03-04 23:45:46 +00:00
}
table th {
2023-03-04 23:45:46 +00:00
background-color: #3f464c;
color: #abb7bf;
text-align: left;
}
table th span {
2023-03-04 23:45:46 +00:00
cursor: pointer;
}
table td {
color: #000;
2023-03-04 23:45:46 +00:00
}
table th, table td {
padding: 8px;
2023-03-04 23:45:46 +00:00
}
table tr:nth-child(even) td {
background-color: #f7f8f8;
2023-03-04 23:45:46 +00:00
}
table a {
2023-03-04 23:45:46 +00:00
color: #222;
}
.trh tr:hover td {
background-color: #f9fae5;
2023-03-04 23:45:46 +00:00
}
.search {
width: 300px;
2023-03-04 23:45:46 +00:00
float: right;
margin-bottom: 10px;
}
.search input {
2023-03-04 23:45:46 +00:00
padding: 5px;
width: 300px;
font-size: 12px;
color: #000;
2023-03-04 23:45:46 +00:00
background-color: #fff;
border: 1px solid #dedede;
outline: 0;
border-radius: 10px;
}
.search button {
2023-03-04 23:45:46 +00:00
text-align: center;
border-radius: 10px;
border: 1px solid #ececec;
background-color: #ffffff;
color: #000000;
font-size: 13px;
outline: 0;
cursor: pointer;
position: absolute;
width: 24px;
height: 24px;
margin: -25px 0 0 274px;
overflow: hidden;
line-height: 24px;
2023-03-04 23:45:46 +00:00
text-overflow: ellipsis;
transition: all 0.23s ease-in-out;
2023-03-04 23:45:46 +00:00
-moz-transition: all 0.23s ease-in-out;
-webkit-transition: all 0.23s ease-in-out;
-o-transition: all 0.23s ease-in-out;
}
.search button:hover {
width: 70px;
margin-left: 229px;
}
2023-03-04 23:45:46 +00:00
.w5p {
width: 5% !important;
2023-03-04 23:45:46 +00:00
}
.w10p {
width: 10% !important;
2023-03-04 23:45:46 +00:00
}
.w15p {
width: 15% !important;
2023-03-04 23:45:46 +00:00
}
.w20p {
width: 20% !important;
2023-03-04 23:45:46 +00:00
}
.w25p {
width: 25% !important;
2023-03-04 23:45:46 +00:00
}
.w35p {
width: 35% !important;
2023-03-04 23:45:46 +00:00
}
.w50p {
width: 50% !important;
2023-03-04 23:45:46 +00:00
}
.left {
float: left;
2023-03-04 23:45:46 +00:00
}
.right {
float: right;
2023-03-04 23:45:46 +00:00
}
.text-left {
text-align: left;
2023-03-04 23:45:46 +00:00
}
.text-center {
text-align: center;
2023-03-04 23:45:46 +00:00
}
.text-right {
text-align: right;
2023-03-04 23:45:46 +00:00
}
.text-red {
color: #bd2727;
2023-03-04 23:45:46 +00:00
}
.text-green {
color: #27bd32;
2023-03-04 23:45:46 +00:00
}
.vtop {
vertical-align: top;
2023-03-04 23:45:46 +00:00
}
.space {
clear: both;
margin-top: 15px;
2023-03-04 23:45:46 +00:00
}
.informer {
margin-bottom: 10px;
2023-03-04 23:45:46 +00:00
border-left: 5px solid #29a3f2;
padding: 5px;
font-size: 14px;
background-color: #ffffff;
color: #000;
text-transform: uppercase;
}
.informer.green {
border-color: #28b727;
2023-03-04 23:45:46 +00:00
}
.informer.red {
border-color: #f22929;
2023-03-04 23:45:46 +00:00
}
.pages {
2023-03-04 23:45:46 +00:00
display: inline-block;
width: 100%;
text-align: right;
}
.pages > div {
2023-03-04 23:45:46 +00:00
margin-top: 10px;
}
.pages > i {
margin: 0 2px;
2023-03-04 23:45:46 +00:00
}
.pages a {
2023-03-04 23:45:46 +00:00
display: inline-block;
background-color: #3f464c;
color: #8e9ca8;
font-size: 13px;
font-family: nav;
padding: 3px 8px;
position: relative;
text-decoration: none;
text-transform: capitalize;
}
.pages a:hover, .pages a.active {
background-color: #252b30;
color: #c1d6e3;
2023-03-04 23:45:46 +00:00
}
#search_error {
display: none;
2023-03-04 23:45:46 +00:00
width: 100%;
background-color: #dadde0;
padding: 10px;
color: #777;
}
#loadinginfo {
2023-03-04 23:45:46 +00:00
display: none;
/* background-color: #fff; */
2023-03-04 23:45:46 +00:00
height: 15px;
width: 100%;
left: 90%;
top: 0px;
position: fixed;
}
.loader {
z-index: 99;
position: fixed;
top: 10px;
2023-03-04 23:45:46 +00:00
width: 100%;
}
.loader > span {
display: inline-block;
background-color: #dbdbdb;
width: 5px;
height: 5px;
border-radius: 5px;
-o-border-radius: 5px;
-ms-border-radius: 5px;
-moz-border-radius: 5px;
-webkit-border-radius: 5px;
margin: 0px;
position: fixed;
top: 5px;
left: 90%;
transition: 2.8s all cubic-bezier(0.030, 0.615, 0.995, 0.415);
-o-transition: 2.8s all cubic-bezier(0.030, 0.615, 0.995, 0.415);
-ms-transition: 2.8s all cubic-bezier(0.030, 0.615, 0.995, 0.415);
-moz-transition: 2.8s all cubic-bezier(0.030, 0.615, 0.995, 0.415);
-webkit-transition: 2.8s all cubic-bezier(0.030, 0.615, 0.995, 0.415);
z-index: 101;
}
.loader > span.jmp {
transition: none !important;
-o-transition: none !important;
-ms-transition: none !important;
-moz-transition: none !important;
-webkit-transition: none !important;
}
.loader span.l-1 {
background-color: #e74c3c;
}
.loader span.l-2 {
background-color: #e67e22;
}
.loader span.l-3 {
background-color: #f1c40f;
}
.loader span.l-4 {
background-color: #2ecc71;
}
.loader span.l-5 {
background-color: #3498db;
}
.loader span.l-6 {
background-color: #9b59b6;
}
.p_info p {
padding: 5px;
border-bottom: 1px dotted #EEE;
}
.pointer {
cursor: pointer;
}
.none {
display: none;
}
.btn {
font-size: 12px;
2023-03-04 23:45:46 +00:00
padding: 5px;
background-color: #2e3439;
border: 1px solid #3f464c;
color: #7b8893;
cursor: pointer;
outline: 0;
}
.btn:hover {
color: #abb7bf;
2023-03-04 23:45:46 +00:00
background-color: #2b3135;
}
.btn-green {
background-color: #41d192;
2023-03-04 23:45:46 +00:00
border: 1px solid #55ac5e;
color: #ffffff;
2023-03-04 23:45:46 +00:00
}
.btn-green:hover {
background-color: #37da92;
border: 1px solid #55ac5e;
color: #ffffff;
2023-03-04 23:45:46 +00:00
}
.btn-red {
2023-03-04 23:45:46 +00:00
background-color: #d14141;
border: 1px solid #ac5555;
color: #ffffff;
2023-03-04 23:45:46 +00:00
}
.btn-red:hover {
2023-03-04 23:45:46 +00:00
background-color: #da1010;
border: 1px solid #ac5555;
color: #ffffff;
2023-03-04 23:45:46 +00:00
}
.double-color td {
background-color: #ffffff !important;
2023-03-04 23:45:46 +00:00
}
.double-color tr:nth-child(2n) td {
border-bottom: 2px solid #3f464c;
2023-03-04 23:45:46 +00:00
}