├── .gitignore ├── README.md ├── Sidebar #1 ├── index.html ├── logo.png └── style.css └── Sidebar #2 ├── index.html ├── logo.png ├── logo.svg └── style.css /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_STORE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | A collection of ready to use sidebars built using CSS. -------------------------------------------------------------------------------- /Sidebar #1/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsmrProg-YT/css-sidebars/HEAD/Sidebar #1/index.html -------------------------------------------------------------------------------- /Sidebar #1/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsmrProg-YT/css-sidebars/HEAD/Sidebar #1/logo.png -------------------------------------------------------------------------------- /Sidebar #1/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsmrProg-YT/css-sidebars/HEAD/Sidebar #1/style.css -------------------------------------------------------------------------------- /Sidebar #2/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsmrProg-YT/css-sidebars/HEAD/Sidebar #2/index.html -------------------------------------------------------------------------------- /Sidebar #2/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsmrProg-YT/css-sidebars/HEAD/Sidebar #2/logo.png -------------------------------------------------------------------------------- /Sidebar #2/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsmrProg-YT/css-sidebars/HEAD/Sidebar #2/logo.svg -------------------------------------------------------------------------------- /Sidebar #2/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsmrProg-YT/css-sidebars/HEAD/Sidebar #2/style.css --------------------------------------------------------------------------------