diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md deleted file mode 100644 index f9e02eed..00000000 --- a/CONTRIBUTING.md +++ /dev/null @@ -1,18 +0,0 @@ -# Contributing - -*[Website](https://developers.google.com/web/starter-kit/) related issues should be filed on the [Web Fundamentals](https://github.com/google/WebFundamentals/issues/new) issue tracker.* - -Web Starter Kit is an open source project. It is licensed using the -[Apache Software License 2.0](http://www.apache.org/licenses/LICENSE-2.0.html). -We appreciate pull requests, here are our guidelines: - -1. File a bug at https://github.com/google/web-starter-kit/issues (if there -isn’t one already). If your patch is going to be large it might be a good idea -to get the discussion started early. We are happy to discuss it in a new issue beforehand. -1. Make sure that patches provide justification for why they should be merged. Web Starter Kit is an opinionated project and as such, patches which add support for alternative choices to those we prescribe are not guaranteed to land. -1. Due to legal reasons, all contributors must sign a contributor license -agreement, either for an -[individual](https://code.google.com/legal/individual-cla-v1.0.html) or -[corporation](https://code.google.com/legal/corporate-cla-v1.0.html), before a -patch can be accepted. -1. We ask that you squash all the commits together before pushing. diff --git a/app/styles/main.scss b/app/styles/main.scss deleted file mode 100644 index 423643d3..00000000 --- a/app/styles/main.scss +++ /dev/null @@ -1,30 +0,0 @@ -/* - * Web Starter Kit - * - * Multi-screen layout styles for your page. Brought to you by the - * Web Starter Kit team. - * - */ - -/* - * Visual Style Guide styles - * Remove if you prefer to use a CSS library, like Bootstrap - */ - - @import "../styleguide/layout/layout"; - -body { - margin: 0px; -} - -main { - padding: 20px; -} - -html, body { - color: $text-color-secondary; -} - -h1, h2, h3, h4, h5 { - color: $text-color-primary; -} diff --git a/docs/commands.md b/docs/commands.md deleted file mode 100644 index 70eaab8a..00000000 --- a/docs/commands.md +++ /dev/null @@ -1,26 +0,0 @@ -There are many commands available to help you build and test sites. Here are a few highlights to get started with. - -## Watch For Changes & Automatically Refresh Across Devices - -```sh -$ gulp serve -``` - -This outputs an IP address you can use to locally test and another that can be used on devices connected to your network. - -## Build & Optimize - -```sh -$ gulp -``` - -Build and optimize the current project, ready for deployment. -This includes linting as well as image, script, stylesheet and HTML optimization and minification. - -## Performance Insights - -```sh -$ gulp pagespeed -``` - -Runs the deployed (public) version of your site against the [PageSpeed Insights](https://developers.google.com/speed/pagespeed/insights/) API to help you stay on top of where you can improve.