0
0
mirror of https://github.com/lipis/flag-icons.git synced 2024-11-22 02:47:32 +01:00
flags/README.md

53 lines
1.8 KiB
Markdown
Raw Normal View History

2021-10-22 15:13:32 +02:00
# flag-icons
2016-08-14 18:12:53 +02:00
2021-10-22 22:39:50 +02:00
> A collection of all country flags in SVG — plus the CSS for easier integration. See the [demo](https://flagicons.lipis.dev).
2013-09-24 17:29:04 +02:00
2018-11-19 17:26:13 +01:00
## Install
2021-10-22 23:25:28 +02:00
You can either [download](https://github.com/lipis/flag-icons/archive/main.zip) the whole project as is or install it via NPM:
2016-05-08 14:24:15 +02:00
```bash
2021-10-22 23:39:25 +02:00
$ npm install flag-icon-css
2016-05-08 14:24:15 +02:00
```
2016-08-14 18:12:53 +02:00
## Usage
2013-09-24 17:29:04 +02:00
2021-10-22 22:39:50 +02:00
For using the flags inline with text add the classes `.flag-icon` and `.flag-icon-xx` (where `xx` is the [ISO 3166-1-alpha-2 code](https://www.iso.org/obp/ui/#search/code/) of a country) to an empty `<span>`. If you want to have a squared version flag then add the class `flag-icon-squared` as well. Example:
2013-09-27 00:40:54 +02:00
2015-11-15 17:42:59 +01:00
```html
<span class="flag-icon flag-icon-gr"></span>
<span class="flag-icon flag-icon-gr flag-icon-squared"></span>
```
2013-09-25 22:33:29 +02:00
2021-10-22 22:39:50 +02:00
You could also apply this to any element, but in that case you'll have to use the `flag-icon-background` instead of `flag-icon` and you're set. This will add the correct background with the following CSS properties:
2013-09-27 00:40:54 +02:00
2015-11-15 17:42:59 +01:00
```css
background-size: contain;
background-position: 50%;
background-repeat: no-repeat;
```
2013-09-27 00:40:54 +02:00
2021-10-22 22:39:50 +02:00
Which means that the flag is just going to appear in the middle of an element, so you will have to set manually the correct size of 4 by 3 ratio or if it's squared add also the `flag-icon-squared` class.
2013-09-27 00:40:54 +02:00
2016-08-14 18:12:53 +02:00
## Development
2013-09-27 00:40:54 +02:00
2021-10-22 22:39:50 +02:00
Run the `yarn` to install the dependencies after cloning the project and you'll be able to:
2013-09-27 00:40:54 +02:00
To build `*.less` files
2015-11-15 17:42:59 +01:00
```bash
2021-10-22 22:39:50 +02:00
$ yarn build
2015-11-15 17:42:59 +01:00
```
2013-09-27 00:40:54 +02:00
To serve it on `localhost:8000`
2015-11-15 17:42:59 +01:00
```bash
2021-10-22 22:39:50 +02:00
$ yarn start
2015-11-15 17:42:59 +01:00
```
2013-09-27 00:40:54 +02:00
2021-10-22 22:39:50 +02:00
To have only specific countries in the css file, remove the ones that you don't need from the [`flag-icon-list.less`](https://github.com/lipis/flag-icons/blob/master/less/flag-icon-list.less) file and build it again.
2015-11-15 17:42:59 +01:00
2016-08-14 18:12:53 +02:00
## Credits
2015-11-15 17:42:59 +01:00
2021-10-22 22:39:50 +02:00
This project wouldn't exist without the awesome and now deleted collection of SVG flags by [koppi](https://github.com/koppi).