Files
create-react-app/docusaurus/website/static/css/custom.css
Sabesh Rajendran 437b83f033 Show logo on mobile docs (#7521)
* Show logo for mobile views in create-react-app.dev

* Update docusaurus/website/static/css/custom.css


Co-authored-by: Sabesh Kumar Rajendran <sabrajendran@paypal.com>
2019-08-14 12:09:49 -06:00

57 lines
858 B
CSS

/* your custom css */
.homeContainer {
background: #282c34;
color: white;
padding: 80px 0;
}
.homeContainer .button {
background: #24292e;
border-color: white;
transition: background 0.3s, color 0.3s;
}
.homeContainer .button:hover {
background: white;
color: #282c34;
}
.homeContainer * {
color: inherit;
}
.post a {
text-decoration: underline;
}
.navigationSlider .slidingNav ul {
background: #282c34;
}
.headerTitleWithLogo {
white-space: nowrap;
}
.projectLogo {
display: block;
}
@media only screen and (min-device-width: 360px) and (max-device-width: 736px) {
}
@media only screen and (min-width: 1024px) {
.navigationSlider .slidingNav ul {
background: none;
}
}
@media only screen and (max-width: 1023px) {
}
@media only screen and (min-width: 1400px) {
}
@media only screen and (min-width: 1500px) {
}