├── .gitignore ├── README.md ├── css ├── fonts │ ├── MicrosoftSansSerif.eot │ ├── MicrosoftSansSerif.svg │ ├── MicrosoftSansSerif.ttf │ └── MicrosoftSansSerif.woff └── style.css ├── gulpfile.js ├── index.html ├── js ├── object-observe-lite.js └── wordart.js ├── less ├── style.less └── textures │ ├── Texture-BlueTissuePaper.png │ ├── Texture-Bouquet.png │ ├── Texture-BrownMarble.png │ ├── Texture-Canvas.png │ ├── Texture-Cork.png │ ├── Texture-Denim.png │ ├── Texture-FishFossil.png │ ├── Texture-Granite.png │ ├── Texture-GreenMarble.png │ ├── Texture-MediumWood.png │ ├── Texture-Newsprint.png │ ├── Texture-Oak.png │ ├── Texture-PaperBag.png │ ├── Texture-Papyrus.png │ ├── Texture-Parchment.png │ ├── Texture-PinkTissuePaper.png │ ├── Texture-PurpleMesh.png │ ├── Texture-RecycledPaper.png │ ├── Texture-Sand.png │ ├── Texture-Stationery.png │ ├── Texture-Walnut.png │ ├── Texture-WaterDroplets.png │ ├── Texture-WhiteMarble.png │ └── Texture-WovenMat.png ├── package.json └── reference ├── .DS_Store ├── screenshots ├── .DS_Store ├── aqua.png ├── chrome.png ├── create.png ├── gallery.png ├── graydient.png ├── horizon.png ├── purple.png ├── radial.png ├── sunset.png ├── superhero.png ├── tilt.png └── yellow.png └── text ├── aqua.png ├── chrome.png ├── graydient.png ├── horizon.png ├── italicoutline.png ├── marbleslab.png ├── mauve.png ├── paperbag.png ├── purple.png ├── radial.png ├── redblue.png ├── slate.png ├── sunset.png ├── superhero.png ├── tilt.png └── yellow.png /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .DS_Store 3 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arizzitano/css3wordart/HEAD/README.md -------------------------------------------------------------------------------- /css/fonts/MicrosoftSansSerif.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arizzitano/css3wordart/HEAD/css/fonts/MicrosoftSansSerif.eot -------------------------------------------------------------------------------- /css/fonts/MicrosoftSansSerif.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arizzitano/css3wordart/HEAD/css/fonts/MicrosoftSansSerif.svg -------------------------------------------------------------------------------- /css/fonts/MicrosoftSansSerif.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arizzitano/css3wordart/HEAD/css/fonts/MicrosoftSansSerif.ttf -------------------------------------------------------------------------------- /css/fonts/MicrosoftSansSerif.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arizzitano/css3wordart/HEAD/css/fonts/MicrosoftSansSerif.woff -------------------------------------------------------------------------------- /css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arizzitano/css3wordart/HEAD/css/style.css -------------------------------------------------------------------------------- /gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arizzitano/css3wordart/HEAD/gulpfile.js -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arizzitano/css3wordart/HEAD/index.html -------------------------------------------------------------------------------- /js/object-observe-lite.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arizzitano/css3wordart/HEAD/js/object-observe-lite.js -------------------------------------------------------------------------------- /js/wordart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arizzitano/css3wordart/HEAD/js/wordart.js -------------------------------------------------------------------------------- /less/style.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arizzitano/css3wordart/HEAD/less/style.less -------------------------------------------------------------------------------- /less/textures/Texture-BlueTissuePaper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arizzitano/css3wordart/HEAD/less/textures/Texture-BlueTissuePaper.png -------------------------------------------------------------------------------- /less/textures/Texture-Bouquet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arizzitano/css3wordart/HEAD/less/textures/Texture-Bouquet.png -------------------------------------------------------------------------------- /less/textures/Texture-BrownMarble.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arizzitano/css3wordart/HEAD/less/textures/Texture-BrownMarble.png -------------------------------------------------------------------------------- /less/textures/Texture-Canvas.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arizzitano/css3wordart/HEAD/less/textures/Texture-Canvas.png -------------------------------------------------------------------------------- /less/textures/Texture-Cork.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arizzitano/css3wordart/HEAD/less/textures/Texture-Cork.png -------------------------------------------------------------------------------- /less/textures/Texture-Denim.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arizzitano/css3wordart/HEAD/less/textures/Texture-Denim.png -------------------------------------------------------------------------------- /less/textures/Texture-FishFossil.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arizzitano/css3wordart/HEAD/less/textures/Texture-FishFossil.png -------------------------------------------------------------------------------- /less/textures/Texture-Granite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arizzitano/css3wordart/HEAD/less/textures/Texture-Granite.png -------------------------------------------------------------------------------- /less/textures/Texture-GreenMarble.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arizzitano/css3wordart/HEAD/less/textures/Texture-GreenMarble.png -------------------------------------------------------------------------------- /less/textures/Texture-MediumWood.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arizzitano/css3wordart/HEAD/less/textures/Texture-MediumWood.png -------------------------------------------------------------------------------- /less/textures/Texture-Newsprint.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arizzitano/css3wordart/HEAD/less/textures/Texture-Newsprint.png -------------------------------------------------------------------------------- /less/textures/Texture-Oak.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arizzitano/css3wordart/HEAD/less/textures/Texture-Oak.png -------------------------------------------------------------------------------- /less/textures/Texture-PaperBag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arizzitano/css3wordart/HEAD/less/textures/Texture-PaperBag.png -------------------------------------------------------------------------------- /less/textures/Texture-Papyrus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arizzitano/css3wordart/HEAD/less/textures/Texture-Papyrus.png -------------------------------------------------------------------------------- /less/textures/Texture-Parchment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arizzitano/css3wordart/HEAD/less/textures/Texture-Parchment.png -------------------------------------------------------------------------------- /less/textures/Texture-PinkTissuePaper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arizzitano/css3wordart/HEAD/less/textures/Texture-PinkTissuePaper.png -------------------------------------------------------------------------------- /less/textures/Texture-PurpleMesh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arizzitano/css3wordart/HEAD/less/textures/Texture-PurpleMesh.png -------------------------------------------------------------------------------- /less/textures/Texture-RecycledPaper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arizzitano/css3wordart/HEAD/less/textures/Texture-RecycledPaper.png -------------------------------------------------------------------------------- /less/textures/Texture-Sand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arizzitano/css3wordart/HEAD/less/textures/Texture-Sand.png -------------------------------------------------------------------------------- /less/textures/Texture-Stationery.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arizzitano/css3wordart/HEAD/less/textures/Texture-Stationery.png -------------------------------------------------------------------------------- /less/textures/Texture-Walnut.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arizzitano/css3wordart/HEAD/less/textures/Texture-Walnut.png -------------------------------------------------------------------------------- /less/textures/Texture-WaterDroplets.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arizzitano/css3wordart/HEAD/less/textures/Texture-WaterDroplets.png -------------------------------------------------------------------------------- /less/textures/Texture-WhiteMarble.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arizzitano/css3wordart/HEAD/less/textures/Texture-WhiteMarble.png -------------------------------------------------------------------------------- /less/textures/Texture-WovenMat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arizzitano/css3wordart/HEAD/less/textures/Texture-WovenMat.png -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arizzitano/css3wordart/HEAD/package.json -------------------------------------------------------------------------------- /reference/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arizzitano/css3wordart/HEAD/reference/.DS_Store -------------------------------------------------------------------------------- /reference/screenshots/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arizzitano/css3wordart/HEAD/reference/screenshots/.DS_Store -------------------------------------------------------------------------------- /reference/screenshots/aqua.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arizzitano/css3wordart/HEAD/reference/screenshots/aqua.png -------------------------------------------------------------------------------- /reference/screenshots/chrome.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arizzitano/css3wordart/HEAD/reference/screenshots/chrome.png -------------------------------------------------------------------------------- /reference/screenshots/create.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arizzitano/css3wordart/HEAD/reference/screenshots/create.png -------------------------------------------------------------------------------- /reference/screenshots/gallery.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arizzitano/css3wordart/HEAD/reference/screenshots/gallery.png -------------------------------------------------------------------------------- /reference/screenshots/graydient.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arizzitano/css3wordart/HEAD/reference/screenshots/graydient.png -------------------------------------------------------------------------------- /reference/screenshots/horizon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arizzitano/css3wordart/HEAD/reference/screenshots/horizon.png -------------------------------------------------------------------------------- /reference/screenshots/purple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arizzitano/css3wordart/HEAD/reference/screenshots/purple.png -------------------------------------------------------------------------------- /reference/screenshots/radial.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arizzitano/css3wordart/HEAD/reference/screenshots/radial.png -------------------------------------------------------------------------------- /reference/screenshots/sunset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arizzitano/css3wordart/HEAD/reference/screenshots/sunset.png -------------------------------------------------------------------------------- /reference/screenshots/superhero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arizzitano/css3wordart/HEAD/reference/screenshots/superhero.png -------------------------------------------------------------------------------- /reference/screenshots/tilt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arizzitano/css3wordart/HEAD/reference/screenshots/tilt.png -------------------------------------------------------------------------------- /reference/screenshots/yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arizzitano/css3wordart/HEAD/reference/screenshots/yellow.png -------------------------------------------------------------------------------- /reference/text/aqua.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arizzitano/css3wordart/HEAD/reference/text/aqua.png -------------------------------------------------------------------------------- /reference/text/chrome.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arizzitano/css3wordart/HEAD/reference/text/chrome.png -------------------------------------------------------------------------------- /reference/text/graydient.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arizzitano/css3wordart/HEAD/reference/text/graydient.png -------------------------------------------------------------------------------- /reference/text/horizon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arizzitano/css3wordart/HEAD/reference/text/horizon.png -------------------------------------------------------------------------------- /reference/text/italicoutline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arizzitano/css3wordart/HEAD/reference/text/italicoutline.png -------------------------------------------------------------------------------- /reference/text/marbleslab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arizzitano/css3wordart/HEAD/reference/text/marbleslab.png -------------------------------------------------------------------------------- /reference/text/mauve.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arizzitano/css3wordart/HEAD/reference/text/mauve.png -------------------------------------------------------------------------------- /reference/text/paperbag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arizzitano/css3wordart/HEAD/reference/text/paperbag.png -------------------------------------------------------------------------------- /reference/text/purple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arizzitano/css3wordart/HEAD/reference/text/purple.png -------------------------------------------------------------------------------- /reference/text/radial.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arizzitano/css3wordart/HEAD/reference/text/radial.png -------------------------------------------------------------------------------- /reference/text/redblue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arizzitano/css3wordart/HEAD/reference/text/redblue.png -------------------------------------------------------------------------------- /reference/text/slate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arizzitano/css3wordart/HEAD/reference/text/slate.png -------------------------------------------------------------------------------- /reference/text/sunset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arizzitano/css3wordart/HEAD/reference/text/sunset.png -------------------------------------------------------------------------------- /reference/text/superhero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arizzitano/css3wordart/HEAD/reference/text/superhero.png -------------------------------------------------------------------------------- /reference/text/tilt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arizzitano/css3wordart/HEAD/reference/text/tilt.png -------------------------------------------------------------------------------- /reference/text/yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arizzitano/css3wordart/HEAD/reference/text/yellow.png --------------------------------------------------------------------------------