Some checks failed
Test examples / Test Examples (20) (push) Has been cancelled
Test examples / Test Examples (22) (push) Has been cancelled
Lock Threads / action (push) Has been cancelled
Trigger Release / start (push) Has been cancelled
Stale issue handler / stale (push) Has been cancelled
Update Font Data / create-pull-request (push) Has been cancelled
build-and-deploy / deploy-target (push) Has been cancelled
build-and-deploy / build (push) Has been cancelled
build-and-deploy / stable - aarch64-unknown-linux-musl - node@16 (push) Has been cancelled
build-and-deploy / stable - x86_64-unknown-linux-musl - node@16 (push) Has been cancelled
build-and-deploy / stable - aarch64-unknown-linux-gnu - node@16 (push) Has been cancelled
build-and-deploy / stable - x86_64-unknown-linux-gnu - node@16 (push) Has been cancelled
build-and-deploy / stable - aarch64-pc-windows-msvc - node@16 (push) Has been cancelled
build-and-deploy / stable - x86_64-pc-windows-msvc - node@16 (push) Has been cancelled
build-and-deploy / stable - aarch64-apple-darwin - node@16 (push) Has been cancelled
build-and-deploy / stable - x86_64-apple-darwin - node@16 (push) Has been cancelled
build-and-deploy / build-wasm (nodejs) (push) Has been cancelled
build-and-deploy / build-wasm (web) (push) Has been cancelled
build-and-deploy / Deploy preview tarball (push) Has been cancelled
build-and-deploy / Potentially publish release (push) Has been cancelled
build-and-deploy / publish-turbopack-npm-packages (push) Has been cancelled
build-and-deploy / Deploy examples (push) Has been cancelled
build-and-deploy / thank you, build (push) Has been cancelled
build-and-deploy / Upload Turbopack Bytesize metrics to Datadog (push) Has been cancelled
Rspack Next.js development integration tests / Rspack integration tests (push) Has been cancelled
Rspack Next.js production integration tests / Rspack integration tests (push) Has been cancelled
Turbopack Next.js development integration tests / Next.js integration tests (push) Has been cancelled
Turbopack Next.js production integration tests / Next.js integration tests (push) Has been cancelled
Update Rspack test manifest / Update and upload Rspack development test manifest (push) Has been cancelled
Update Rspack test manifest / Update and upload Rspack production test manifest (push) Has been cancelled
Upload bundler test manifests to areweturboyet.com / Upload test results (push) Has been cancelled
Update React / create-pull-request (push) Has been cancelled
test-e2e-project-reset-cron / reset-test-project (push) Has been cancelled
Notify about the top 15 issues/PRs/feature requests (most reacted) in the last 90 days / run (push) Has been cancelled
175 lines
2.9 KiB
CSS
175 lines
2.9 KiB
CSS
html {
|
|
--system-fonts:
|
|
-apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial,
|
|
sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
|
|
--xata-accent: rgb(255, 0, 117);
|
|
--xata-accent-faded: rgba(255, 0, 117, 0.4);
|
|
--transition-duration: 350ms;
|
|
--background-color: #000;
|
|
--text-color: #fff;
|
|
}
|
|
|
|
body {
|
|
padding: 0;
|
|
margin: 0;
|
|
min-height: 100vh;
|
|
overflow-x: hidden;
|
|
font-family: "Inter", var(--system-fonts);
|
|
color: var(--text-color);
|
|
background-color: var(--background-color);
|
|
}
|
|
|
|
h1 {
|
|
font-family: monospace;
|
|
font-size: 3rem;
|
|
text-align: center;
|
|
}
|
|
|
|
img {
|
|
width: 300px;
|
|
}
|
|
|
|
a,
|
|
li {
|
|
transition: all var(--transition-duration) ease-in-out;
|
|
}
|
|
|
|
a {
|
|
color: var(--text-color);
|
|
font-size: 2rem;
|
|
text-decoration: none;
|
|
}
|
|
|
|
a:hover,
|
|
a:focus {
|
|
text-decoration: underline dotted;
|
|
color: var(--xata-accent);
|
|
}
|
|
|
|
li a[target="_blank"]::after {
|
|
content: "↗";
|
|
position: relative;
|
|
top: -1em;
|
|
left: 0.5em;
|
|
font-size: 1rem;
|
|
}
|
|
|
|
p {
|
|
color: var(--text-color);
|
|
font-size: 1.2rem;
|
|
line-height: 2;
|
|
}
|
|
|
|
main {
|
|
min-height: 100vh;
|
|
display: grid;
|
|
grid-template-rows: auto 1fr auto;
|
|
}
|
|
|
|
header,
|
|
footer {
|
|
display: grid;
|
|
place-items: center;
|
|
}
|
|
|
|
header {
|
|
height: clamp(4rem, 40rem, 55vh);
|
|
}
|
|
footer {
|
|
border-top: dashed 2px rgba(255, 255, 255, 0.4);
|
|
height: clamp(2rem, 5rem, 10vh);
|
|
}
|
|
|
|
section {
|
|
display: grid;
|
|
place-items: center;
|
|
max-width: 70vw;
|
|
padding: 5rem;
|
|
grid-gap: 2rem;
|
|
margin: 5rem auto;
|
|
border-radius: 30px/15px;
|
|
border: dashed 2px var(--xata-accent);
|
|
font-size: 1.2rem;
|
|
text-align: center;
|
|
line-height: 2;
|
|
}
|
|
|
|
button {
|
|
background-color: transparent;
|
|
padding: 1rem 2rem;
|
|
border: solid 2px var(--xata-accent);
|
|
color: var(--xata-accent);
|
|
font-size: 2rem;
|
|
border-radius: 15px;
|
|
transition: all var(--transition-duration) ease-in-out;
|
|
display: block;
|
|
cursor: pointer;
|
|
}
|
|
|
|
button:hover,
|
|
button:focus {
|
|
border-color: transparent;
|
|
color: var(--background-color);
|
|
background-color: var(--xata-accent);
|
|
}
|
|
|
|
li button {
|
|
position: absolute;
|
|
padding: 1rem 2rem;
|
|
top: 0;
|
|
right: 0;
|
|
font-size: 1.2rem;
|
|
color: transparent;
|
|
text-shadow: 0 0 0 var(--text-color);
|
|
border: none;
|
|
}
|
|
|
|
li button:hover,
|
|
li button:focus {
|
|
text-shadow: 0 0 0 var(--xata-accent);
|
|
color: transparent;
|
|
background-color: transparent;
|
|
}
|
|
|
|
ul {
|
|
max-width: 120ch;
|
|
margin: 0 auto;
|
|
padding: 5rem 2rem;
|
|
display: grid;
|
|
grid-gap: 2rem;
|
|
list-style: none;
|
|
}
|
|
|
|
li {
|
|
position: relative;
|
|
padding: 1rem 2rem;
|
|
border: solid 2px var(--text-color);
|
|
border-radius: 10px/5px;
|
|
}
|
|
|
|
object {
|
|
position: relative;
|
|
top: 10px;
|
|
width: 2rem;
|
|
margin-left: 0.5em;
|
|
}
|
|
|
|
@media (min-width: 700px) {
|
|
ul {
|
|
grid-template-columns: 1fr 1fr;
|
|
}
|
|
}
|
|
|
|
@media (prefers-color-scheme: light) {
|
|
html {
|
|
--background-color: #fff;
|
|
--text-color: #000;
|
|
}
|
|
|
|
@media (prefers-reduced-motion) {
|
|
html {
|
|
--transition-duration: 0;
|
|
}
|
|
}
|
|
}
|