system-status-report-general-info.css 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165
  1. /**
  2. * @file
  3. * Mediteran styles for the System Status general info.
  4. */
  5. .system-status-general-info__header {
  6. overflow: hidden;
  7. font-weight: 300;
  8. margin: 10px 0 20px 0;
  9. font-size: 26px;
  10. }
  11. .system-status-general-info__items {
  12. display: flex;
  13. flex-direction: column;
  14. }
  15. .system-status-general-info__item {
  16. padding: 0 5px 40px 5px;
  17. box-sizing: border-box;
  18. width: 100%;
  19. }
  20. @media screen and (min-width: 1024px) {
  21. .system-status-general-info__items {
  22. display: flex;
  23. flex-wrap: wrap;
  24. flex-direction: row;
  25. }
  26. .system-status-general-info__item {
  27. padding: 0 40px 40px 5px;
  28. box-sizing: border-box;
  29. width: 33.3333333333%;
  30. }
  31. .system-status-general-info__item:nth-child(2) {
  32. width: 66.6666666666%;
  33. padding-right: 0;
  34. }
  35. .system-status-general-info__item:last-child {
  36. border-right: none;
  37. padding: 0;
  38. }
  39. }
  40. .system-status-general-info__item-icon {
  41. display: inline-block;
  42. height: 55px;
  43. width: 55px;
  44. vertical-align: top;
  45. }
  46. .system-status-general-info__item-icon:before {
  47. content: "";
  48. background-size: 35px;
  49. background-position: 50% center;
  50. background-repeat: no-repeat;
  51. width: 100%;
  52. height: 100%;
  53. display: block;
  54. }
  55. .system-status-general-info__item-icon--d8:before {
  56. background-image: url(../../../images/icons/cccccc/d8-logo.svg);
  57. }
  58. .system-status-general-info__item-icon--clock:before {
  59. background-image: url(../../../images/icons/cccccc/clock.svg);
  60. }
  61. .system-status-general-info__item-icon--server:before {
  62. background-image: url(../../../images/icons/cccccc/server.svg);
  63. }
  64. .system-status-general-info__item-icon--php:before {
  65. background-image: url(../../../images/icons/cccccc/php-logo.svg);
  66. background-size: 45px;
  67. }
  68. .system-status-general-info__item-icon--database:before {
  69. background-image: url(../../../images/icons/cccccc/database.svg);
  70. background-size: 30px;
  71. }
  72. .system-status-general-info__item-details {
  73. box-sizing: border-box;
  74. display: inline-block;
  75. width: calc(100% - 60px);
  76. padding-left: 10px; /* LTR */
  77. position: relative;
  78. }
  79. [dir="rtl"] .system-status-general-info__item-details {
  80. padding-right: 10px;
  81. padding-left: 0;
  82. }
  83. .system-status-general-info__item-title {
  84. margin: 15px 0;
  85. color: #0678be;
  86. text-transform: uppercase;
  87. font-size: 14px;
  88. border-bottom: 1px solid #ddd;
  89. padding-bottom: 15px;
  90. }
  91. .system-status-general-info__sub-item-title {
  92. margin: 0;
  93. font-size: 14px;
  94. }
  95. .system-status-general-info__sub-item__title {
  96. font-weight: bold;
  97. }
  98. .system-status-general-info__sub-item__value {
  99. display: block;
  100. }
  101. .system-status-general-info__run-cron {
  102. margin: 1em 0 0;
  103. }
  104. @media screen and (min-width: 60em) {
  105. .system-status-general-info__item-icon {
  106. width: 55px;
  107. height: 55px;
  108. }
  109. .system-status-general-info__item-icon:before {
  110. background-size: 35px;
  111. }
  112. .system-status-general-info__item-icon--php:before {
  113. background-size: 55px;
  114. }
  115. .system-status-general-info__run-cron {
  116. position: absolute;
  117. top: 1em;
  118. right: 1em; /* LTR */
  119. margin-top: 0;
  120. }
  121. [dir="rtl"] .system-status-general-info__run-cron {
  122. left: 1em;
  123. right: auto;
  124. }
  125. }
  126. @media screen and (max-width: 48em) {
  127. .system-status-general-info__header {
  128. display: none;
  129. }
  130. .system-status-general-info {
  131. border-top: 0;
  132. margin-top: 25px;
  133. }
  134. }
  135. .system-status-general-info__description {
  136. position: relative;
  137. }
  138. .system-status-general-info__description .cron-description__run-cron {
  139. position: relative;
  140. margin-top: 15px;
  141. }
  142. @media screen and (min-width: 480px) {
  143. .system-status-general-info__description .cron-description__run-cron {
  144. position: absolute;
  145. top: 0;
  146. right: 0;
  147. margin-top: -20px;
  148. }
  149. }