├── .gitignore ├── README.md ├── css ├── checkmark.png ├── google.css ├── google.less ├── style.css └── style.less ├── index.html └── lesswatch.js /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/james2doyle/google-form-styling/HEAD/README.md -------------------------------------------------------------------------------- /css/checkmark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/james2doyle/google-form-styling/HEAD/css/checkmark.png -------------------------------------------------------------------------------- /css/google.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/james2doyle/google-form-styling/HEAD/css/google.css -------------------------------------------------------------------------------- /css/google.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/james2doyle/google-form-styling/HEAD/css/google.less -------------------------------------------------------------------------------- /css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/james2doyle/google-form-styling/HEAD/css/style.css -------------------------------------------------------------------------------- /css/style.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/james2doyle/google-form-styling/HEAD/css/style.less -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/james2doyle/google-form-styling/HEAD/index.html -------------------------------------------------------------------------------- /lesswatch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/james2doyle/google-form-styling/HEAD/lesswatch.js --------------------------------------------------------------------------------