├── .gitignore ├── LICENSE.txt ├── package.json ├── css ├── css-lists.min.css ├── css-lists.css ├── lists.css └── lists.min.css ├── src └── css-lists.css └── README.md /.gitignore: -------------------------------------------------------------------------------- 1 | # List of files for git to ignore 2 | 3 | .DS_Store 4 | .AppleDouble 5 | .LSOverride 6 | 7 | # Icon must end with two \r 8 | Icon 9 | 10 | 11 | # Thumbnails 12 | ._* 13 | 14 | # Files that might appear on external disk 15 | .Spotlight-V100 16 | .Trashes 17 | 18 | # Directories potentially created on remote AFP share 19 | .AppleDB 20 | .AppleDesktop 21 | Network Trash Folder 22 | Temporary Items 23 | .apdisk 24 | 25 | # Vim 26 | Session.vim 27 | 28 | # Node 29 | node_modules/* 30 | -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- 1 | ISC License (ISC) 2 | Copyright (c) 2018, Adam Morse 3 | 4 | Permission to use, copy, modify, and/or distribute this software for any 5 | purpose with or without fee is hereby granted, provided that the above 6 | copyright notice and this permission notice appear in all copies. 7 | 8 | THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH 9 | REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND 10 | FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, 11 | INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM 12 | LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR 13 | OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR 14 | PERFORMANCE OF THIS SOFTWARE. 15 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "css-lists", 3 | "style": "lists.css", 4 | "version": "1.1.0", 5 | "homepage": "http://github.com/mrmrs/css-lists", 6 | "description": "Css module of single purpose classes for lists", 7 | "keywords": [ 8 | "css", 9 | "oocss", 10 | "lists" 11 | ], 12 | "css-lists": { 13 | "type": "git", 14 | "url": "http://github.com/mrmrs/css-lists.git" 15 | }, 16 | "bugs": { 17 | "url": "https://github.com/mrmrs/css-lists/issues", 18 | "email": "hi@mrmrs.cc" 19 | }, 20 | "author": { 21 | "name": "Adam Morse", 22 | "email": "hi@mrmrs.cc", 23 | "url": "http://mrmrs.cc" 24 | }, 25 | "contributors": [ 26 | { 27 | "name": "Adam Morse", 28 | "email": "hi@mrmrs.cc" 29 | } 30 | ], 31 | "license": "MIT", 32 | "devDependencies": { 33 | "tachyons-cli": "^1.3.0" 34 | }, 35 | "scripts": { 36 | "start": "tachyons src/css-lists.css > css/css-lists.css && tachyons src/css-lists.css --minify > css/css-lists.min.css && tachyons src/css-lists.css --generate-docs --package=../../package.json > readme.md" 37 | } 38 | } 39 | -------------------------------------------------------------------------------- /css/css-lists.min.css: -------------------------------------------------------------------------------- 1 | .disc{list-style-type:disc}.circle{list-style-type:circle}.square{list-style-type:square}.decimal{list-style-type:decimal}.leading-zero{list-style-type:decimal-leading-zero}.lower-roman{list-style-type:lower-roman}.upper-roman{list-style-type:upper-roman}.lower-greek{list-style-type:lower-greek}.lower-latin{list-style-type:lower-latin}.upper-latin{list-style-type:upper-latin}.lower-alpha{list-style-type:lower-alpha}.upper-alpha{list-style-type:upper-alpha}.list{list-style-type:none}@media screen and (min-width:48em){.disc-ns{list-style-type:disc}.circle-ns{list-style-type:circle}.square-ns{list-style-type:square}.decimal-ns{list-style-type:decimal}.leading-zero-ns{list-style-type:decimal-leading-zero}.lower-roman-ns{list-style-type:lower-roman}.upper-roman-ns{list-style-type:upper-roman}.lower-greek-ns{list-style-type:lower-greek}.lower-latin-ns{list-style-type:lower-latin}.upper-latin-ns{list-style-type:upper-latin}.lower-alpha-ns{list-style-type:lower-alpha}.upper-alpha-ns{list-style-type:upper-alpha}.list-ns{list-style-type:none}}@media screen and (min-width:48em) and (max-width:64em){.disc-m{list-style-type:disc}.circle-m{list-style-type:circle}.square-m{list-style-type:square}.decimal-m{list-style-type:decimal}.leading-zero-m{list-style-type:decimal-leading-zero}.lower-roman-m{list-style-type:lower-roman}.upper-roman-m{list-style-type:upper-roman}.lower-greek-m{list-style-type:lower-greek}.lower-latin-m{list-style-type:lower-latin}.upper-latin-m{list-style-type:upper-latin}.lower-alpha-m{list-style-type:lower-alpha}.upper-alpha-m{list-style-type:upper-alpha}.list-m{list-style-type:none}}@media screen and (min-width:64em){.disc-l{list-style-type:disc}.circle-l{list-style-type:circle}.square-l{list-style-type:square}.decimal-l{list-style-type:decimal}.leading-zero-l{list-style-type:decimal-leading-zero}.lower-roman-l{list-style-type:lower-roman}.upper-roman-l{list-style-type:upper-roman}.lower-greek-l{list-style-type:lower-greek}.lower-latin-l{list-style-type:lower-latin}.upper-latin-l{list-style-type:upper-latin}.lower-alpha-l{list-style-type:lower-alpha}.upper-alpha-l{list-style-type:upper-alpha}.list-l{list-style-type:none}} 2 | 3 | -------------------------------------------------------------------------------- /css/css-lists.css: -------------------------------------------------------------------------------- 1 | /* 2 | LIST STYLE TYPES 3 | */ 4 | .disc { list-style-type: disc; } 5 | .circle { list-style-type: circle; } 6 | .square { list-style-type: square; } 7 | .decimal { list-style-type: decimal; } 8 | .leading-zero { list-style-type: decimal-leading-zero; } 9 | .lower-roman { list-style-type: lower-roman; } 10 | .upper-roman { list-style-type: upper-roman; } 11 | .lower-greek { list-style-type: lower-greek; } 12 | .lower-latin { list-style-type: lower-latin; } 13 | .upper-latin { list-style-type: upper-latin; } 14 | .lower-alpha { list-style-type: lower-alpha; } 15 | .upper-alpha { list-style-type: upper-alpha; } 16 | .list { list-style-type: none; } 17 | @media screen and (min-width: 48em) { 18 | .disc-ns { list-style-type: disc; } 19 | .circle-ns { list-style-type: circle; } 20 | .square-ns { list-style-type: square; } 21 | .decimal-ns { list-style-type: decimal; } 22 | .leading-zero-ns { list-style-type: decimal-leading-zero; } 23 | .lower-roman-ns { list-style-type: lower-roman; } 24 | .upper-roman-ns { list-style-type: upper-roman; } 25 | .lower-greek-ns { list-style-type: lower-greek; } 26 | .lower-latin-ns { list-style-type: lower-latin; } 27 | .upper-latin-ns { list-style-type: upper-latin; } 28 | .lower-alpha-ns { list-style-type: lower-alpha; } 29 | .upper-alpha-ns { list-style-type: upper-alpha; } 30 | .list-ns { list-style-type: none; } 31 | } 32 | @media screen and (min-width:48em) and (max-width: 64em) { 33 | .disc-m { list-style-type: disc; } 34 | .circle-m { list-style-type: circle; } 35 | .square-m { list-style-type: square; } 36 | .decimal-m { list-style-type: decimal; } 37 | .leading-zero-m { list-style-type: decimal-leading-zero; } 38 | .lower-roman-m { list-style-type: lower-roman; } 39 | .upper-roman-m { list-style-type: upper-roman; } 40 | .lower-greek-m { list-style-type: lower-greek; } 41 | .lower-latin-m { list-style-type: lower-latin; } 42 | .upper-latin-m { list-style-type: upper-latin; } 43 | .lower-alpha-m { list-style-type: lower-alpha; } 44 | .upper-alpha-m { list-style-type: upper-alpha; } 45 | .list-m { list-style-type: none; } 46 | } 47 | @media screen and (min-width: 64em) { 48 | .disc-l { list-style-type: disc; } 49 | .circle-l { list-style-type: circle; } 50 | .square-l { list-style-type: square; } 51 | .decimal-l { list-style-type: decimal; } 52 | .leading-zero-l { list-style-type: decimal-leading-zero; } 53 | .lower-roman-l { list-style-type: lower-roman; } 54 | .upper-roman-l { list-style-type: upper-roman; } 55 | .lower-greek-l { list-style-type: lower-greek; } 56 | .lower-latin-l { list-style-type: lower-latin; } 57 | .upper-latin-l { list-style-type: upper-latin; } 58 | .lower-alpha-l { list-style-type: lower-alpha; } 59 | .upper-alpha-l { list-style-type: upper-alpha; } 60 | .list-l { list-style-type: none; } 61 | } 62 | 63 | -------------------------------------------------------------------------------- /css/lists.css: -------------------------------------------------------------------------------- 1 | /* 2 | LIST STYLE TYPES 3 | */ 4 | 5 | 6 | .disc { list-style-type: disc; } 7 | .circle { list-style-type: circle; } 8 | .square { list-style-type: square; } 9 | .decimal { list-style-type: decimal; } 10 | .leading-zero { list-style-type: decimal-leading-zero; } 11 | .lower-roman { list-style-type: lower-roman; } 12 | .upper-roman { list-style-type: upper-roman; } 13 | .lower-greek { list-style-type: lower-greek; } 14 | .lower-latin { list-style-type: lower-latin; } 15 | .upper-latin { list-style-type: upper-latin; } 16 | .lower-alpha { list-style-type: lower-alpha; } 17 | .upper-alpha { list-style-type: upper-alpha; } 18 | .list { list-style-type: none; } 19 | 20 | @media screen and (min-width: 48em) { 21 | .disc-ns { list-style-type: disc; } 22 | .circle-ns { list-style-type: circle; } 23 | .square-ns { list-style-type: square; } 24 | .decimal-ns { list-style-type: decimal; } 25 | .leading-zero-ns { list-style-type: decimal-leading-zero; } 26 | .lower-roman-ns { list-style-type: lower-roman; } 27 | .upper-roman-ns { list-style-type: upper-roman; } 28 | .lower-greek-ns { list-style-type: lower-greek; } 29 | .lower-latin-ns { list-style-type: lower-latin; } 30 | .upper-latin-ns { list-style-type: upper-latin; } 31 | .lower-alpha-ns { list-style-type: lower-alpha; } 32 | .upper-alpha-ns { list-style-type: upper-alpha; } 33 | .list-ns { list-style-type: none; } 34 | } 35 | 36 | @media screen and (min-width:48em) and (max-width: 64em) { 37 | .disc-m { list-style-type: disc; } 38 | .circle-m { list-style-type: circle; } 39 | .square-m { list-style-type: square; } 40 | .decimal-m { list-style-type: decimal; } 41 | .leading-zero-m { list-style-type: decimal-leading-zero; } 42 | .lower-roman-m { list-style-type: lower-roman; } 43 | .upper-roman-m { list-style-type: upper-roman; } 44 | .lower-greek-m { list-style-type: lower-greek; } 45 | .lower-latin-m { list-style-type: lower-latin; } 46 | .upper-latin-m { list-style-type: upper-latin; } 47 | .lower-alpha-m { list-style-type: lower-alpha; } 48 | .upper-alpha-m { list-style-type: upper-alpha; } 49 | .list-m { list-style-type: none; } 50 | } 51 | 52 | @media screen and (min-width: 64em) { 53 | .disc-l { list-style-type: disc; } 54 | .circle-l { list-style-type: circle; } 55 | .square-l { list-style-type: square; } 56 | .decimal-l { list-style-type: decimal; } 57 | .leading-zero-l { list-style-type: decimal-leading-zero; } 58 | .lower-roman-l { list-style-type: lower-roman; } 59 | .upper-roman-l { list-style-type: upper-roman; } 60 | .lower-greek-l { list-style-type: lower-greek; } 61 | .lower-latin-l { list-style-type: lower-latin; } 62 | .upper-latin-l { list-style-type: upper-latin; } 63 | .lower-alpha-l { list-style-type: lower-alpha; } 64 | .upper-alpha-l { list-style-type: upper-alpha; } 65 | .list-l { list-style-type: none; } 66 | } 67 | 68 | -------------------------------------------------------------------------------- /css/lists.min.css: -------------------------------------------------------------------------------- 1 | /* 2 | LIST STYLE TYPES 3 | */ 4 | 5 | 6 | .disc { list-style-type: disc; } 7 | .circle { list-style-type: circle; } 8 | .square { list-style-type: square; } 9 | .decimal { list-style-type: decimal; } 10 | .leading-zero { list-style-type: decimal-leading-zero; } 11 | .lower-roman { list-style-type: lower-roman; } 12 | .upper-roman { list-style-type: upper-roman; } 13 | .lower-greek { list-style-type: lower-greek; } 14 | .lower-latin { list-style-type: lower-latin; } 15 | .upper-latin { list-style-type: upper-latin; } 16 | .lower-alpha { list-style-type: lower-alpha; } 17 | .upper-alpha { list-style-type: upper-alpha; } 18 | .list { list-style-type: none; } 19 | 20 | @media screen and (min-width: 48em) { 21 | .disc-ns { list-style-type: disc; } 22 | .circle-ns { list-style-type: circle; } 23 | .square-ns { list-style-type: square; } 24 | .decimal-ns { list-style-type: decimal; } 25 | .leading-zero-ns { list-style-type: decimal-leading-zero; } 26 | .lower-roman-ns { list-style-type: lower-roman; } 27 | .upper-roman-ns { list-style-type: upper-roman; } 28 | .lower-greek-ns { list-style-type: lower-greek; } 29 | .lower-latin-ns { list-style-type: lower-latin; } 30 | .upper-latin-ns { list-style-type: upper-latin; } 31 | .lower-alpha-ns { list-style-type: lower-alpha; } 32 | .upper-alpha-ns { list-style-type: upper-alpha; } 33 | .list-ns { list-style-type: none; } 34 | } 35 | 36 | @media screen and (min-width:48em) and (max-width: 64em) { 37 | .disc-m { list-style-type: disc; } 38 | .circle-m { list-style-type: circle; } 39 | .square-m { list-style-type: square; } 40 | .decimal-m { list-style-type: decimal; } 41 | .leading-zero-m { list-style-type: decimal-leading-zero; } 42 | .lower-roman-m { list-style-type: lower-roman; } 43 | .upper-roman-m { list-style-type: upper-roman; } 44 | .lower-greek-m { list-style-type: lower-greek; } 45 | .lower-latin-m { list-style-type: lower-latin; } 46 | .upper-latin-m { list-style-type: upper-latin; } 47 | .lower-alpha-m { list-style-type: lower-alpha; } 48 | .upper-alpha-m { list-style-type: upper-alpha; } 49 | .list-m { list-style-type: none; } 50 | } 51 | 52 | @media screen and (min-width: 64em) { 53 | .disc-l { list-style-type: disc; } 54 | .circle-l { list-style-type: circle; } 55 | .square-l { list-style-type: square; } 56 | .decimal-l { list-style-type: decimal; } 57 | .leading-zero-l { list-style-type: decimal-leading-zero; } 58 | .lower-roman-l { list-style-type: lower-roman; } 59 | .upper-roman-l { list-style-type: upper-roman; } 60 | .lower-greek-l { list-style-type: lower-greek; } 61 | .lower-latin-l { list-style-type: lower-latin; } 62 | .upper-latin-l { list-style-type: upper-latin; } 63 | .lower-alpha-l { list-style-type: lower-alpha; } 64 | .upper-alpha-l { list-style-type: upper-alpha; } 65 | .list-l { list-style-type: none; } 66 | } 67 | 68 | -------------------------------------------------------------------------------- /src/css-lists.css: -------------------------------------------------------------------------------- 1 | /* 2 | LIST STYLE TYPES 3 | */ 4 | 5 | 6 | .disc { list-style-type: disc; } 7 | .circle { list-style-type: circle; } 8 | .square { list-style-type: square; } 9 | .decimal { list-style-type: decimal; } 10 | .leading-zero { list-style-type: decimal-leading-zero; } 11 | .lower-roman { list-style-type: lower-roman; } 12 | .upper-roman { list-style-type: upper-roman; } 13 | .lower-greek { list-style-type: lower-greek; } 14 | .lower-latin { list-style-type: lower-latin; } 15 | .upper-latin { list-style-type: upper-latin; } 16 | .lower-alpha { list-style-type: lower-alpha; } 17 | .upper-alpha { list-style-type: upper-alpha; } 18 | .list { list-style-type: none; } 19 | 20 | @media screen and (min-width: 48em) { 21 | .disc-ns { list-style-type: disc; } 22 | .circle-ns { list-style-type: circle; } 23 | .square-ns { list-style-type: square; } 24 | .decimal-ns { list-style-type: decimal; } 25 | .leading-zero-ns { list-style-type: decimal-leading-zero; } 26 | .lower-roman-ns { list-style-type: lower-roman; } 27 | .upper-roman-ns { list-style-type: upper-roman; } 28 | .lower-greek-ns { list-style-type: lower-greek; } 29 | .lower-latin-ns { list-style-type: lower-latin; } 30 | .upper-latin-ns { list-style-type: upper-latin; } 31 | .lower-alpha-ns { list-style-type: lower-alpha; } 32 | .upper-alpha-ns { list-style-type: upper-alpha; } 33 | .list-ns { list-style-type: none; } 34 | } 35 | 36 | @media screen and (min-width:48em) and (max-width: 64em) { 37 | .disc-m { list-style-type: disc; } 38 | .circle-m { list-style-type: circle; } 39 | .square-m { list-style-type: square; } 40 | .decimal-m { list-style-type: decimal; } 41 | .leading-zero-m { list-style-type: decimal-leading-zero; } 42 | .lower-roman-m { list-style-type: lower-roman; } 43 | .upper-roman-m { list-style-type: upper-roman; } 44 | .lower-greek-m { list-style-type: lower-greek; } 45 | .lower-latin-m { list-style-type: lower-latin; } 46 | .upper-latin-m { list-style-type: upper-latin; } 47 | .lower-alpha-m { list-style-type: lower-alpha; } 48 | .upper-alpha-m { list-style-type: upper-alpha; } 49 | .list-m { list-style-type: none; } 50 | } 51 | 52 | @media screen and (min-width: 64em) { 53 | .disc-l { list-style-type: disc; } 54 | .circle-l { list-style-type: circle; } 55 | .square-l { list-style-type: square; } 56 | .decimal-l { list-style-type: decimal; } 57 | .leading-zero-l { list-style-type: decimal-leading-zero; } 58 | .lower-roman-l { list-style-type: lower-roman; } 59 | .upper-roman-l { list-style-type: upper-roman; } 60 | .lower-greek-l { list-style-type: lower-greek; } 61 | .lower-latin-l { list-style-type: lower-latin; } 62 | .upper-latin-l { list-style-type: upper-latin; } 63 | .lower-alpha-l { list-style-type: lower-alpha; } 64 | .upper-alpha-l { list-style-type: upper-alpha; } 65 | .list-l { list-style-type: none; } 66 | } 67 | 68 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # css-lists 1.0.6 2 | 3 | Css module of single purpose classes for lists 4 | 5 | #### Stats 6 | 7 | 411 | 52 | 52 8 | ---|---|--- 9 | bytes | selectors | declarations 10 | 11 | ## Installation 12 | 13 | #### With [npm](https://npmjs.com) 14 | 15 | ``` 16 | npm install --save-dev css-lists 17 | ``` 18 | 19 | Learn more about using css installed with npm: 20 | * https://webpack.github.io/docs/stylesheets.html 21 | * https://github.com/defunctzombie/npm-css 22 | 23 | #### With Git 24 | 25 | http: 26 | ``` 27 | git clone https://github.com/tachyons-css/css-lists 28 | ``` 29 | 30 | ssh: 31 | ``` 32 | git clone git@github.com:tachyons-css/css-lists.git 33 | ``` 34 | 35 | ## Usage 36 | 37 | #### Using with [Postcss](https://github.com/postcss/postcss) 38 | 39 | Import the css module 40 | 41 | ```css 42 | @import "css-lists"; 43 | ``` 44 | 45 | Then process the css using the [`tachyons-cli`](https://github.com/tachyons-css/tachyons-cli) 46 | 47 | ```sh 48 | $ npm i -g tachyons-cli 49 | $ tachyons path/to/css-file.css > dist/t.css 50 | ``` 51 | 52 | #### Using the css 53 | 54 | ##### CDN 55 | The easiest and most simple way to use the css is to use the cdn hosted version. Include it in the head of your html with: 56 | 57 | ``` 58 | 59 | ``` 60 | 61 | ##### Locally 62 | The built css is located in the `css` directory. It contains an unminified and minified version. 63 | You can either cut and paste that css or link to it directly in your html. 64 | 65 | ```html 66 | 67 | ``` 68 | 69 | #### Development 70 | 71 | The source css files can be found in the `src` directory. 72 | Running `$ npm start` will process the source css and place the built css in the `css` directory. 73 | 74 | ## The css 75 | 76 | ```css 77 | /* 78 | LIST STYLE TYPES 79 | */ 80 | .disc { list-style-type: disc; } 81 | .circle { list-style-type: circle; } 82 | .square { list-style-type: square; } 83 | .decimal { list-style-type: decimal; } 84 | .leading-zero { list-style-type: decimal-leading-zero; } 85 | .lower-roman { list-style-type: lower-roman; } 86 | .upper-roman { list-style-type: upper-roman; } 87 | .lower-greek { list-style-type: lower-greek; } 88 | .lower-latin { list-style-type: lower-latin; } 89 | .upper-latin { list-style-type: upper-latin; } 90 | .lower-alpha { list-style-type: lower-alpha; } 91 | .upper-alpha { list-style-type: upper-alpha; } 92 | .list { list-style-type: none; } 93 | @media screen and (min-width: 48em) { 94 | .disc-ns { list-style-type: disc; } 95 | .circle-ns { list-style-type: circle; } 96 | .square-ns { list-style-type: square; } 97 | .decimal-ns { list-style-type: decimal; } 98 | .leading-zero-ns { list-style-type: decimal-leading-zero; } 99 | .lower-roman-ns { list-style-type: lower-roman; } 100 | .upper-roman-ns { list-style-type: upper-roman; } 101 | .lower-greek-ns { list-style-type: lower-greek; } 102 | .lower-latin-ns { list-style-type: lower-latin; } 103 | .upper-latin-ns { list-style-type: upper-latin; } 104 | .lower-alpha-ns { list-style-type: lower-alpha; } 105 | .upper-alpha-ns { list-style-type: upper-alpha; } 106 | .list-ns { list-style-type: none; } 107 | } 108 | @media screen and (min-width:48em) and (max-width: 64em) { 109 | .disc-m { list-style-type: disc; } 110 | .circle-m { list-style-type: circle; } 111 | .square-m { list-style-type: square; } 112 | .decimal-m { list-style-type: decimal; } 113 | .leading-zero-m { list-style-type: decimal-leading-zero; } 114 | .lower-roman-m { list-style-type: lower-roman; } 115 | .upper-roman-m { list-style-type: upper-roman; } 116 | .lower-greek-m { list-style-type: lower-greek; } 117 | .lower-latin-m { list-style-type: lower-latin; } 118 | .upper-latin-m { list-style-type: upper-latin; } 119 | .lower-alpha-m { list-style-type: lower-alpha; } 120 | .upper-alpha-m { list-style-type: upper-alpha; } 121 | .list-m { list-style-type: none; } 122 | } 123 | @media screen and (min-width: 64em) { 124 | .disc-l { list-style-type: disc; } 125 | .circle-l { list-style-type: circle; } 126 | .square-l { list-style-type: square; } 127 | .decimal-l { list-style-type: decimal; } 128 | .leading-zero-l { list-style-type: decimal-leading-zero; } 129 | .lower-roman-l { list-style-type: lower-roman; } 130 | .upper-roman-l { list-style-type: upper-roman; } 131 | .lower-greek-l { list-style-type: lower-greek; } 132 | .lower-latin-l { list-style-type: lower-latin; } 133 | .upper-latin-l { list-style-type: upper-latin; } 134 | .lower-alpha-l { list-style-type: lower-alpha; } 135 | .upper-alpha-l { list-style-type: upper-alpha; } 136 | .list-l { list-style-type: none; } 137 | } 138 | ``` 139 | 140 | ## Contributing 141 | 142 | 1. Fork it 143 | 2. Create your feature branch (`git checkout -b my-new-feature`) 144 | 3. Commit your changes (`git commit -am 'Add some feature'`) 145 | 4. Push to the branch (`git push origin my-new-feature`) 146 | 5. Create new Pull Request 147 | 148 | ## Authors 149 | 150 | * [mrmrs](http://mrmrs.io) 151 | * [johno](http://johnotander.com) 152 | 153 | ## License 154 | 155 | ISC 156 | 157 | --------------------------------------------------------------------------------