mirror of
https://github.com/thatmattlove/hyperglass.git
synced 2026-01-26 20:28:07 +00:00
106 lines
1.7 KiB
CSS
106 lines
1.7 KiB
CSS
/**
|
|
* Copyright (c) 2017-present, Facebook, Inc.
|
|
*
|
|
* This source code is licensed under the MIT license found in the
|
|
* LICENSE file in the root directory of this source tree.
|
|
*/
|
|
|
|
/**
|
|
* CSS files with the .module.css suffix will be treated as CSS modules
|
|
* and scoped locally.
|
|
*/
|
|
.heroBanner {
|
|
/* background-color: var(--neutron-color-dark); */
|
|
background-color: var(--ifm-background-color);
|
|
color: var(--neutron-color-lighter);
|
|
padding: 128px;
|
|
text-align: center;
|
|
position: relative;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.title[class] {
|
|
font-weight: 200;
|
|
font-size: 4rem;
|
|
}
|
|
|
|
.subTitle[class] {
|
|
font-weight: 200;
|
|
font-size: 2rem;
|
|
padding: 24px;
|
|
}
|
|
|
|
h2.smallerTitle[class] {
|
|
font-size: 1.5rem;
|
|
}
|
|
|
|
.smallerTitleContainer {
|
|
max-width: 50%;
|
|
}
|
|
|
|
@media screen and (max-width: 966px) {
|
|
.smallerTitleContainer {
|
|
max-width: unset;
|
|
}
|
|
}
|
|
|
|
.homeBtn {
|
|
color: unset !important;
|
|
font-size: 24px;
|
|
padding: 16px 36px;
|
|
margin: 0.25rem;
|
|
border-color: unset;
|
|
}
|
|
|
|
.homeBtn:hover {
|
|
color: white !important;
|
|
}
|
|
|
|
.btnPrimary:hover {
|
|
border-color: var(--ifm-color-primary);
|
|
}
|
|
|
|
.btnSecondary:hover {
|
|
border-color: var(--ifm-color-secondary);
|
|
}
|
|
|
|
.buttons {
|
|
margin-top: 4vh;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
flex-wrap: wrap;
|
|
}
|
|
|
|
.content {
|
|
align-items: center;
|
|
display: flex;
|
|
padding: 36px 0;
|
|
width: 100%;
|
|
}
|
|
|
|
@media screen and (max-width: 966px) {
|
|
.heroBanner {
|
|
padding: 2rem;
|
|
min-height: 80vh;
|
|
}
|
|
|
|
.title {
|
|
font-size: 2.5rem !important;
|
|
}
|
|
|
|
.homeBtn {
|
|
min-width: 100%;
|
|
padding-left: 1rem;
|
|
padding-right: 1rem;
|
|
font-size: var(--ifm-h3-font-size);
|
|
}
|
|
}
|
|
|
|
.tagPrimary {
|
|
color: var(--ifm-color-primary);
|
|
}
|
|
|
|
.tagSecondary {
|
|
color: var(--ifm-color-secondary);
|
|
}
|