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
251 lines
3.6 KiB
CSS
251 lines
3.6 KiB
CSS
.container {
|
|
min-height: calc(100vh - 64px);
|
|
padding: 0;
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
max-width: 90vw;
|
|
margin: auto;
|
|
}
|
|
|
|
.main {
|
|
width: 100%;
|
|
max-width: 540px;
|
|
padding-top: 2rem;
|
|
flex: 1;
|
|
}
|
|
|
|
.footer {
|
|
max-width: 540px;
|
|
color: #808080;
|
|
margin: 4em 0;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
}
|
|
|
|
.footer img {
|
|
margin: 0 0.5rem;
|
|
}
|
|
|
|
.footer a {
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
}
|
|
|
|
.title a {
|
|
color: #0070f3;
|
|
text-decoration: none;
|
|
}
|
|
|
|
.title {
|
|
margin: 0;
|
|
font-size: 1.75rem;
|
|
line-height: 35px;
|
|
}
|
|
|
|
.description {
|
|
margin-top: 0.5rem;
|
|
color: #808080;
|
|
}
|
|
|
|
.title,
|
|
.description {
|
|
text-align: center;
|
|
}
|
|
|
|
.arrow {
|
|
display: none;
|
|
}
|
|
|
|
.cards {
|
|
margin: 0;
|
|
}
|
|
|
|
.card {
|
|
min-height: 135px;
|
|
border: 2px solid #fff;
|
|
border-radius: 0.5em;
|
|
transition:
|
|
color 0.15s ease,
|
|
border-color 0.15s ease;
|
|
}
|
|
|
|
.card:empty {
|
|
padding: 2em;
|
|
background-image:
|
|
radial-gradient(circle 14px at 46px 46px, #f2f2f2 99%, transparent 0),
|
|
linear-gradient(
|
|
100deg,
|
|
rgba(255, 255, 255, 0),
|
|
rgba(255, 255, 255, 0.5) 50%,
|
|
rgba(255, 255, 255, 0) 80%
|
|
),
|
|
linear-gradient(#f2f2f2 16px, transparent 0),
|
|
linear-gradient(#f2f2f2 16px, transparent 0),
|
|
linear-gradient(#f2f2f2 16px, transparent 0);
|
|
|
|
background-repeat: repeat-y;
|
|
|
|
background-size:
|
|
100px 200px,
|
|
/* circle */ 50px 200px,
|
|
/* highlight */ 150px 200px,
|
|
350px 200px,
|
|
200px 200px;
|
|
|
|
background-position:
|
|
0 0,
|
|
/* circle */ 0 0,
|
|
/* highlight */ 70px 36px,
|
|
70px 58px,
|
|
70px 80px;
|
|
|
|
animation: shine 1s infinite;
|
|
}
|
|
|
|
@keyframes shine {
|
|
to {
|
|
background-position:
|
|
0 0,
|
|
100% 0,
|
|
70px 36px,
|
|
70px 58px,
|
|
70px 80px;
|
|
}
|
|
}
|
|
|
|
.card h3 {
|
|
margin: 0;
|
|
font-size: 1.125rem;
|
|
font-weight: 600;
|
|
line-height: 1.5;
|
|
}
|
|
|
|
.card p {
|
|
margin: 0;
|
|
font-size: 1rem;
|
|
line-height: 1.25;
|
|
color: #808080;
|
|
}
|
|
|
|
.cardContent {
|
|
background: transparent;
|
|
border: none;
|
|
display: grid;
|
|
grid-template-columns: 24px 1fr;
|
|
gap: 1em;
|
|
padding: 1.5em 1em;
|
|
text-align: left;
|
|
color: inherit;
|
|
text-decoration: none;
|
|
}
|
|
|
|
.cardContent img {
|
|
margin-top: 0.2rem;
|
|
}
|
|
|
|
.logo {
|
|
height: 1.5rem;
|
|
}
|
|
|
|
.links {
|
|
display: flex;
|
|
flex-direction: column;
|
|
height: 3.5rem;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
}
|
|
|
|
.link {
|
|
color: #335bf1;
|
|
font-weight: 600;
|
|
}
|
|
|
|
@media screen and (min-width: 768px) {
|
|
.main {
|
|
padding-top: 4.5rem;
|
|
}
|
|
|
|
.title {
|
|
line-height: 50px;
|
|
font-size: 2.5rem;
|
|
}
|
|
|
|
.description {
|
|
font-size: 1.25rem;
|
|
}
|
|
|
|
.title a:hover,
|
|
.title a:focus,
|
|
.title a:active {
|
|
text-decoration: underline;
|
|
}
|
|
|
|
.cards {
|
|
margin: 4rem 0;
|
|
}
|
|
|
|
.card {
|
|
margin-bottom: 1rem;
|
|
}
|
|
|
|
.card:hover,
|
|
.card:focus,
|
|
.card:active {
|
|
border-color: #f2f2f2;
|
|
}
|
|
|
|
.card:hover .arrow {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
height: 100%;
|
|
}
|
|
|
|
.cardContent {
|
|
grid-template-columns: 24px 1fr 42px;
|
|
padding: 2em;
|
|
cursor: pointer;
|
|
font: inherit;
|
|
}
|
|
|
|
.links {
|
|
padding-left: 28px;
|
|
flex-direction: row;
|
|
height: inherit;
|
|
}
|
|
|
|
.link {
|
|
padding-right: 28px;
|
|
}
|
|
|
|
.link:hover {
|
|
background: url(/icons/external-link.svg) no-repeat right;
|
|
background-size: 20px 20px;
|
|
}
|
|
|
|
.linkText:hover {
|
|
border-bottom: 2px solid #335bf1;
|
|
}
|
|
}
|
|
|
|
.backend {
|
|
margin-bottom: 4rem;
|
|
}
|
|
.backend h2 {
|
|
text-align: center;
|
|
}
|
|
.backend h4 {
|
|
margin-bottom: 0;
|
|
}
|
|
.backend h4 em {
|
|
font-weight: normal;
|
|
margin-left: 0.5rem;
|
|
}
|
|
.backend pre {
|
|
font-size: 80%;
|
|
border-radius: 0.5rem;
|
|
}
|