Update urls, modified starter example custom css, added it to Docusaurus website

This commit is contained in:
Eric Nakagawa 2017-09-22 13:23:27 -07:00
parent 0dce734a1d
commit c0109192b1
3 changed files with 14 additions and 3 deletions

View file

@ -1,5 +1,16 @@
/* your custom css */ /* your custom css */
* { @media only screen and (min-device-width: 360px) and (max-device-width: 736px) {
border: 1px solid red; }
@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) {
} }

View file

@ -58,7 +58,7 @@ const siteConfig = {
apiKey: "3eb9507824b8be89e7a199ecaa1a9d2c", apiKey: "3eb9507824b8be89e7a199ecaa1a9d2c",
indexName: "docusaurus" indexName: "docusaurus"
}, },
// customCssFileName: "custom.css", //the name of your custom css file customCssFileName: "custom.css", //the name of your custom css file
colors: { colors: {
primaryColor: "#2E8555", primaryColor: "#2E8555",
secondaryColor: "#205C3B", secondaryColor: "#205C3B",

View file