123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165 |
- /**
- * @file
- * Mediteran styles for the System Status general info.
- */
- .system-status-general-info__header {
- overflow: hidden;
- font-weight: 300;
- margin: 10px 0 20px 0;
- font-size: 26px;
- }
- .system-status-general-info__items {
- display: flex;
- flex-direction: column;
- }
- .system-status-general-info__item {
- padding: 0 5px 40px 5px;
- box-sizing: border-box;
- width: 100%;
- }
- @media screen and (min-width: 1024px) {
- .system-status-general-info__items {
- display: flex;
- flex-wrap: wrap;
- flex-direction: row;
- }
- .system-status-general-info__item {
- padding: 0 40px 40px 5px;
- box-sizing: border-box;
- width: 33.3333333333%;
- }
- .system-status-general-info__item:nth-child(2) {
- width: 66.6666666666%;
- padding-right: 0;
- }
- .system-status-general-info__item:last-child {
- border-right: none;
- padding: 0;
- }
- }
- .system-status-general-info__item-icon {
- display: inline-block;
- height: 55px;
- width: 55px;
- vertical-align: top;
- }
- .system-status-general-info__item-icon:before {
- content: "";
- background-size: 35px;
- background-position: 50% center;
- background-repeat: no-repeat;
- width: 100%;
- height: 100%;
- display: block;
- }
- .system-status-general-info__item-icon--d8:before {
- background-image: url(../../../images/icons/cccccc/d8-logo.svg);
- }
- .system-status-general-info__item-icon--clock:before {
- background-image: url(../../../images/icons/cccccc/clock.svg);
- }
- .system-status-general-info__item-icon--server:before {
- background-image: url(../../../images/icons/cccccc/server.svg);
- }
- .system-status-general-info__item-icon--php:before {
- background-image: url(../../../images/icons/cccccc/php-logo.svg);
- background-size: 45px;
- }
- .system-status-general-info__item-icon--database:before {
- background-image: url(../../../images/icons/cccccc/database.svg);
- background-size: 30px;
- }
- .system-status-general-info__item-details {
- box-sizing: border-box;
- display: inline-block;
- width: calc(100% - 60px);
- padding-left: 10px; /* LTR */
- position: relative;
- }
- [dir="rtl"] .system-status-general-info__item-details {
- padding-right: 10px;
- padding-left: 0;
- }
- .system-status-general-info__item-title {
- margin: 15px 0;
- color: #0678be;
- text-transform: uppercase;
- font-size: 14px;
- border-bottom: 1px solid #ddd;
- padding-bottom: 15px;
- }
- .system-status-general-info__sub-item-title {
- margin: 0;
- font-size: 14px;
- }
- .system-status-general-info__sub-item__title {
- font-weight: bold;
- }
- .system-status-general-info__sub-item__value {
- display: block;
- }
- .system-status-general-info__run-cron {
- margin: 1em 0 0;
- }
- @media screen and (min-width: 60em) {
- .system-status-general-info__item-icon {
- width: 55px;
- height: 55px;
- }
- .system-status-general-info__item-icon:before {
- background-size: 35px;
- }
- .system-status-general-info__item-icon--php:before {
- background-size: 55px;
- }
- .system-status-general-info__run-cron {
- position: absolute;
- top: 1em;
- right: 1em; /* LTR */
- margin-top: 0;
- }
- [dir="rtl"] .system-status-general-info__run-cron {
- left: 1em;
- right: auto;
- }
- }
- @media screen and (max-width: 48em) {
- .system-status-general-info__header {
- display: none;
- }
- .system-status-general-info {
- border-top: 0;
- margin-top: 25px;
- }
- }
- .system-status-general-info__description {
- position: relative;
- }
- .system-status-general-info__description .cron-description__run-cron {
- position: relative;
- margin-top: 15px;
- }
- @media screen and (min-width: 480px) {
- .system-status-general-info__description .cron-description__run-cron {
- position: absolute;
- top: 0;
- right: 0;
- margin-top: -20px;
- }
- }
|