File size: 2,119 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 |
@import "calypso/assets/stylesheets/shared/mixins/breakpoints";
.page-server-settings {
/* Rely on the standard spacing for the underlying elements. */
.feature-example {
margin-top: 0;
}
.hosting-card {
padding-left: 22px;
margin-bottom: 12px;
}
.navigation-header {
padding: 0;
margin-bottom: 16px;
}
.card > .card-icon,
.card > .material-icon,
.card > .gridicon {
display: inline-block;
margin-right: 16px;
margin-bottom: 16px;
vertical-align: middle;
}
.card > .card-heading {
display: inline-block;
margin-top: 0;
margin-bottom: 16px;
vertical-align: middle;
line-height: 32px;
}
.card.trial-banner {
padding: 1.5rem;
background: var(--color-surface);
box-shadow: 0 0 0 1px var(--color-border-subtle);
.trial-banner__content {
padding-right: 0;
}
.trial-banner__content .trial-banner__title {
font-size: 2rem;
font-family: Recoleta, "Noto Serif", Georgia, "Times New Roman", Times, serif;
}
.trial-banner__content .trial-banner__subtitle {
color: var(--color-text);
}
.trial-banner__chart-wrapper .trial-banner__chart-label {
font-size: 0.875rem;
color: var(--color-text);
}
@include breakpoint-deprecated( "<480px" ) {
margin: 0 auto 0.625rem;
.trial-banner__content .trial-banner__title {
font-size: 1.25rem;
font-weight: normal;
}
.trial-banner__content .trial-banner__subtitle {
font-size: 1rem;
}
}
}
.spinner {
width: 100%;
}
.happiness-engineers-tray {
align-items: flex-start;
display: flex;
justify-content: flex-start;
}
}
.hosting__activating-notice {
.gridicons-sync > use:first-child,
.gridicons-sync > g:first-child {
animation: spinning-sync-icon linear 2s infinite;
transform-origin: center;
}
}
@keyframes spinning-sync-icon {
from {
transform: rotate(0deg);
}
to {
transform: rotate(360deg);
}
}
// Downtime monitoring indent child toggles
.jetpack-monitor-settings__child-settings {
margin: 16px 48px 0;
}
// Downtime monitoring duplicates style from site-settings/style.scss
.support-info + .jetpack-module-toggle {
display: flex;
} |