1
0
mirror of https://github.com/checktheroads/hyperglass synced 2024-05-11 05:55:08 +00:00
Files
checktheroads-hyperglass/docs/src/pages/styles.module.css
checktheroads a3cd810746 docs updates
2020-02-28 01:26:12 -07:00

70 lines
1.2 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;
}
.getStarted {
color: unset !important;
font-size: 24px;
padding: 16px 36px;
}
.getStarted:hover {
color: unset !important;
}
.buttons {
margin-top: 4vh;
display: flex;
align-items: center;
justify-content: center;
}
.content {
align-items: center;
display: flex;
padding: 36px 0;
width: 100%;
}
@media screen and (max-width: 966px) {
.heroBanner {
padding: 2rem;
}
.title {
font-size: 2.5rem !important;
}
}
.tag {
color: var(--ifm-color-primary);
}