mirror of
https://github.com/facebook/docusaurus.git
synced 2025-12-29 21:42:50 +00:00
156 lines
2.1 KiB
CSS
156 lines
2.1 KiB
CSS
/**
|
|
* Copyright (c) Facebook, Inc. and its affiliates.
|
|
*
|
|
* This source code is licensed under the MIT license found in the
|
|
* LICENSE file in the root directory of this source tree.
|
|
*/
|
|
|
|
.section {
|
|
padding: 72px 0;
|
|
}
|
|
|
|
.sectionAlt {
|
|
background-color: var(--ifm-color-emphasis-100);
|
|
}
|
|
|
|
.sectionInner {
|
|
margin: 0 auto;
|
|
}
|
|
|
|
.featureImage {
|
|
max-width: 60%;
|
|
max-height: 128px;
|
|
margin: 0 auto;
|
|
}
|
|
|
|
.featureHeading {
|
|
font-size: var(--ifm-h3-font-size);
|
|
padding-top: 1rem;
|
|
}
|
|
|
|
.announcement {
|
|
font-weight: bold;
|
|
font-size: 24px;
|
|
padding: 48px;
|
|
margin: 0 auto;
|
|
text-align: center;
|
|
}
|
|
|
|
.announcementDark {
|
|
background-color: #20232a;
|
|
color: #fff;
|
|
}
|
|
|
|
.announcementInner {
|
|
margin: 0 auto;
|
|
max-width: 768px;
|
|
}
|
|
|
|
.hero {
|
|
background-color: #2b3137;
|
|
padding: 48px;
|
|
}
|
|
|
|
.heroInner {
|
|
margin: 0 auto;
|
|
max-width: 1100px;
|
|
padding: 0 20px;
|
|
}
|
|
|
|
.heroProjectTagline {
|
|
color: #fff;
|
|
font-size: 60px;
|
|
margin: 0;
|
|
}
|
|
|
|
.heroTitleTextHtml b {
|
|
color: var(--ifm-color-primary);
|
|
}
|
|
|
|
@keyframes jackInTheBox {
|
|
from {
|
|
opacity: 0;
|
|
transform: scale(0.1) rotate(30deg);
|
|
transform-origin: center bottom;
|
|
}
|
|
|
|
50% {
|
|
transform: rotate(-10deg);
|
|
}
|
|
|
|
70% {
|
|
transform: rotate(3deg);
|
|
}
|
|
|
|
to {
|
|
opacity: 1;
|
|
transform: scale(1);
|
|
}
|
|
}
|
|
|
|
.heroLogo {
|
|
animation-duration: 2s;
|
|
animation-name: jackInTheBox;
|
|
float: right;
|
|
margin-top: 20px;
|
|
padding: 0 20px 20px;
|
|
}
|
|
|
|
.indexCtas {
|
|
--ifm-button-size-multiplier: 1.6;
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
align-items: center;
|
|
margin-top: 24px;
|
|
}
|
|
|
|
.indexCtas a:last-of-type {
|
|
margin: 20px 36px;
|
|
}
|
|
|
|
.indexCtasGitHubButtonWrapper {
|
|
display: flex;
|
|
}
|
|
|
|
.indexCtasGitHubButton {
|
|
overflow: hidden;
|
|
}
|
|
|
|
.indexCtaTryNowButton:hover {
|
|
color: var(--ifm-color-primary);
|
|
}
|
|
|
|
@media only screen and (max-width: 768px) {
|
|
.hero {
|
|
padding-left: 20px;
|
|
padding-right: 20px;
|
|
}
|
|
|
|
.heroInner {
|
|
padding: 0;
|
|
}
|
|
|
|
.heroProjectTagline {
|
|
font-size: 36px;
|
|
text-align: center;
|
|
}
|
|
|
|
.heroLogo {
|
|
display: block;
|
|
float: none;
|
|
margin: 0 auto;
|
|
}
|
|
|
|
.indexCtas {
|
|
justify-content: center;
|
|
}
|
|
|
|
.indexCtas a {
|
|
margin: 20px 36px;
|
|
}
|
|
|
|
.indexCtasGitHubButton {
|
|
display: none;
|
|
}
|
|
}
|