File size: 1,155 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 |
.defensive-mode-card__edge-cache-required {
color: var(--color-text-subtle);
font-style: italic;
}
.defensive-mode-card__enabled-description {
align-items: center;
display: flex;
gap: 10px;
p {
margin: 0;
}
}
@keyframes defensive-mode-card__enabled-indicator-pulse {
from {
box-shadow: 0 0 0 3px color-mix(in srgb, var(--studio-wordpress-blue-10) 0%);
}
to {
box-shadow: 0 0 0 3px var(--studio-wordpress-blue-10);
}
}
.defensive-mode-card__enabled-indicator {
animation: defensive-mode-card__enabled-indicator-pulse 1.5s linear infinite alternate;
background-color: var(--color-accent);
border-radius: 100%;
flex-shrink: 0;
height: 10px;
width: 10px;
}
.defensive-mode-card__a11n-description {
align-items: start;
background-color: var(--studio-wordpress-blue-5);
border-radius: 4px;
color: var(--studio-wordpress-blue-80);
display: flex;
gap: 12px;
margin-top: 24px;
padding: 16px;
}
.defensive-mode-card__a11n-text {
p {
margin: 0;
}
p + p {
margin-top: 4px;
}
}
.defensive-mode-card__ttl-select {
display: block;
margin-bottom: 1.5em;
width: 100%;
}
.defensive-mode-card__button {
margin-top: 1.5em;
}
|