mirror of
https://github.com/facebook/docusaurus.git
synced 2025-05-20 20:46:58 +02:00
Merge pull request #81 from ericnakagawa/master
Several Docusaurus, Website changes and enhancements.
This commit is contained in:
commit
f48ff77322
20 changed files with 1950 additions and 71 deletions
|
@ -1,5 +1,11 @@
|
|||
.DS_Store
|
||||
node_modules
|
||||
translated_docs
|
||||
i18n
|
||||
yarn.lock
|
||||
.DS_Store
|
||||
lib/core/metadata.js
|
||||
lib/core/MetadataBlog.js
|
||||
website/translated_docs
|
||||
website/build/
|
||||
website/yarn.lock
|
||||
website/node_modules
|
||||
|
||||
website/i18n/*
|
||||
!website/i18n/en.json
|
||||
|
|
|
@ -34,6 +34,8 @@ const siteConfig = {
|
|||
headerIcon: "img/docusaurus.svg",
|
||||
footerIcon: "img/docusaurus.svg",
|
||||
favicon: "img/favicon.png",
|
||||
/* the name of your custom css file that resides in static/css/ */
|
||||
// customCssFileName: "custom.css",
|
||||
/* colors for website */
|
||||
colors: {
|
||||
primaryColor: "#2E8555",
|
||||
|
|
16
examples/basics/static/css/custom.css
Normal file
16
examples/basics/static/css/custom.css
Normal file
|
@ -0,0 +1,16 @@
|
|||
/* your custom css */
|
||||
|
||||
@media only screen and (min-device-width: 360px) and (max-device-width: 736px) {
|
||||
}
|
||||
|
||||
@media only screen and (min-width: 1024px) {
|
||||
}
|
||||
|
||||
@media only screen and (max-width: 1023px) {
|
||||
}
|
||||
|
||||
@media only screen and (min-width: 1400px) {
|
||||
}
|
||||
|
||||
@media only screen and (min-width: 1500px) {
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue