adf0d17497
publish / version_or_publish (push) Has been cancelled
storybook-build / changes (push) Has been cancelled
storybook-build / :storybook-build (push) Has been cancelled
Sync Gradio Skills to Hugging Face / sync-skills (push) Has been cancelled
functional / changes (push) Has been cancelled
functional / build-frontend (push) Has been cancelled
functional / functional-test-SSR=false (push) Has been cancelled
functional / functional-reload (push) Has been cancelled
js / changes (push) Has been cancelled
js / js-test (push) Has been cancelled
docs-build / changes (push) Has been cancelled
docs-build / docs-build (push) Has been cancelled
docs-build / website-build (push) Has been cancelled
functional / functional-test-SSR=true (push) Has been cancelled
hygiene / hygiene-test (push) Has been cancelled
python / changes (push) Has been cancelled
python / build (push) Has been cancelled
python / test-ubuntu-latest-flaky (push) Has been cancelled
python / test-ubuntu-latest-not-flaky (push) Has been cancelled
python / test-windows-latest-flaky (push) Has been cancelled
python / test-windows-latest-not-flaky (push) Has been cancelled
64 lines
1.1 KiB
CSS
64 lines
1.1 KiB
CSS
/* CSSKeyframesRule for animation */
|
|
@keyframes animation {
|
|
from {background-color: red;}
|
|
to {background-color: blue;}
|
|
}
|
|
|
|
.cool-col {
|
|
background-color: red;
|
|
animation-name: animation;
|
|
animation-duration: 4s;
|
|
animation-delay: 2s;
|
|
animation-iteration-count: infinite;
|
|
border-radius: 10px;
|
|
padding: 20px;
|
|
}
|
|
|
|
/* CSSStyleRule */
|
|
.markdown {
|
|
background-color: lightblue;
|
|
padding: 20px;
|
|
}
|
|
|
|
.markdown p {
|
|
color: royalblue;
|
|
}
|
|
|
|
/* CSSMediaRule */
|
|
@media screen and (max-width: 600px) {
|
|
.markdown {
|
|
background: blue;
|
|
}
|
|
.markdown p {
|
|
color: lightblue;
|
|
}
|
|
}
|
|
|
|
.dark .markdown {
|
|
background: pink;
|
|
}
|
|
|
|
.darktest h3 {
|
|
color: black;
|
|
}
|
|
|
|
.dark .darktest h3 {
|
|
color: yellow;
|
|
}
|
|
|
|
/* CSSFontFaceRule */
|
|
@font-face {
|
|
font-family: "test-font";
|
|
src: url("https://mdn.github.io/css-examples/web-fonts/VeraSeBd.ttf") format("truetype");
|
|
}
|
|
|
|
.cool-col {
|
|
font-family: "test-font";
|
|
}
|
|
|
|
/* CSSImportRule */
|
|
@import url("https://fonts.googleapis.com/css2?family=Protest+Riot&display=swap");
|
|
|
|
.markdown {
|
|
font-family: "Protest Riot", sans-serif;
|
|
} |