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

70 lines
2.1 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-27 13:37:06 +02:00
> A curated 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-28 10:04:09 +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 or Yarn:
2016-05-08 14:24:15 +02:00
```bash
npm install flag-icons
2021-10-28 10:04:09 +02:00
# or
yarn add flag-icons
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
First, you need to import css:
```js
import "/node_modules/flag-icons/css/flag-icons.min.css";
```
or use CDN:
```html
<link
rel="stylesheet"
2023-08-22 19:05:24 +02:00
href="https://cdn.jsdelivr.net/gh/lipis/flag-icons@6.11.0/css/flag-icons.min.css"
/>
```
2021-12-28 14:09:09 +01:00
For using the flags inline with text add the classes `.fi` and `.fi-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 `fis` as well. Example:
2013-09-27 00:40:54 +02:00
2015-11-15 17:42:59 +01:00
```html
2021-12-28 14:09:09 +01:00
<span class="fi fi-gr"></span> <span class="fi fi-gr fis"></span>
2015-11-15 17:42:59 +01:00
```
2013-09-25 22:33:29 +02:00
2021-12-28 14:09:09 +01:00
You could also apply this to any element, but in that case you'll have to use the `fib` instead of `fi` 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-25 20:53:15 +02:00
To have only specific countries in the css file, remove the ones that you don't need from the [`flag-icons-list.less`](less/flag-icons-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-12-20 14:36:40 +01:00
- This project wouldn't exist without the awesome and now deleted collection of SVG flags by [koppi](https://github.com/koppi).
- Thank you [Andrejs Abrickis](https://twitter.com/andrejsabrickis) for providing the `flag-icons` name on [npm](https://www.npmjs.com/package/flag-icons).