forked from seanherron/Flag-Webicons
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathflag-webicons.less
29 lines (22 loc) · 4.34 KB
/
flag-webicons.less
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
/* Flag Webicons by Sean Herron http://seanherron.com */
/* Inspired by FC Webicons by Fairhead Creative http://fairheadcreative.com */
.flag-webicon { display: inline-block; background-size: contain !important; background-repeat:no-repeat !important; background-position:center !important; width: 64px; height: 64px; text-indent: -9999em; text-align: left; }
.flag-webicon.xsmall { width: 16px; height: 16px; }
.flag-webicon.small { width: 32px; height: 32px; }
.flag-webicon.large { width: 128px; height: 128px; }
.flag-webicon.xlarge { width: 256px; height: 256px; }
// Include or remove the icons you want to use on your site from this list.
@flag-webicons-icons: ~"afghanistan", ~"albania", ~"algeria", ~"andorra", ~"angola", ~"antigua-and-barbuda", ~"argentina", ~"armenia", ~"australia", ~"austria", ~"azerbaijan", ~"bahamas", ~"bahrain", ~"bangladesh", ~"barbados", ~"belarus", ~"belgium", ~"belize", ~"benin", ~"bhutan", ~"bolivia", ~"bosnia-and-herzegovina", ~"botswana", ~"brazil", ~"brunei", ~"bulgaria", ~"burkina-faso", ~"burundi", ~"cambodia", ~"cameroon", ~"canada", ~"cape-verde", ~"central-african-republic", ~"chad", ~"chile", ~"colombia", ~"comoros", ~"costa-rica", ~"croatia", ~"cuba", ~"cyprus", ~"czech-republic", ~"cote-divoire", ~"democratic-republic-of-the-congo", ~"denmark", ~"djibouti", ~"dominica", ~"dominican-republic", ~"east-timor", ~"ecuador", ~"egypt", ~"el-salvador", ~"equatorial-guinea", ~"eritrea", ~"estonia", ~"ethiopia", ~"federated-states-of-micronesia", ~"fiji", ~"finland", ~"france", ~"gabon", ~"gambia", ~"georgia", ~"germany", ~"ghana", ~"greece", ~"grenada", ~"guatemala", ~"guinea-bissau", ~"guinea", ~"guyana", ~"haiti", ~"honduras", ~"hungary", ~"iceland", ~"india", ~"indonesia", ~"iran", ~"iraq", ~"ireland", ~"israel", ~"italy", ~"jamaica", ~"japan", ~"jordan", ~"kazakhstan", ~"kenya", ~"kiribati", ~"kuwait", ~"kyrgyzstan", ~"laos", ~"latvia", ~"lebanon", ~"lesotho", ~"liberia", ~"libya", ~"liechtenstein", ~"lithuania", ~"luxembourg", ~"macedonia", ~"madagascar", ~"malawi", ~"malaysia", ~"maldives", ~"mali", ~"malta", ~"marshall-islands", ~"mauritania", ~"mauritius", ~"mexico", ~"moldova", ~"monaco", ~"mongolia", ~"montenegro", ~"morocco", ~"mozambique", ~"myanmar", ~"namibia", ~"nauru", ~"nepal", ~"netherlands", ~"new-zealand", ~"nicaragua", ~"niger", ~"nigeria", ~"north-korea", ~"norway", ~"oman", ~"pakistan", ~"palau", ~"palestine", ~"panama", ~"papua-new-guinea", ~"paraguay", ~"peoples-republic-of-china", ~"peru", ~"philippines", ~"poland", ~"portugal", ~"qatar", ~"republic-of-china", ~"republic-of-the-congo", ~"romania", ~"russia", ~"rwanda", ~"saint-kitts-and-nevis", ~"saint-lucia", ~"saint-vincent-and-the-grenadines", ~"samoa", ~"san-marino", ~"sao-tome-and-principe", ~"saudi-arabia", ~"senegal", ~"serbia", ~"seychelles", ~"sierra-leone", ~"singapore", ~"slovakia", ~"slovenia", ~"solomon-islands", ~"somalia", ~"south-africa", ~"south-korea", ~"south-sudan", ~"spain", ~"sri-lanka", ~"sudan", ~"suriname", ~"swaziland", ~"sweden", ~"switzerland", ~"syria", ~"tajikistan", ~"tanzania", ~"thailand", ~"togo", ~"tonga", ~"trinidad-and-tobago", ~"tunisia", ~"turkey", ~"turkmenistan", ~"tuvalu", ~"uganda", ~"ukraine", ~"united-arab-emirates", ~"united-kingdom", ~"united-states", ~"uruguay", ~"uzbekistan", ~"vanuatu", ~"vatican-city", ~"venezuela", ~"vietnam", ~"yemen", ~"zambia", ~"zimbabwe";
// Specify the path to the webicons directory here. Include trailing slash.
@flag-webicons-url: "flags/";
.flag-webicons-loop(@list, @index: 1) when (isstring(extract(@list, @index))) {
@flag-webicons-icon: extract(@list, @index);
.no-svg .flag-webicon.@{flag-webicons-icon} {background: url("@{flag-webicons-url}@{flag-webicons-icon}.png");}
.no-svg .flag-webicon.@{flag-webicons-icon}.xsmall {background: url("@{flag-webicons-url}@{flag-webicons-icon}-xs.png");}
.no-svg .flag-webicon.@{flag-webicons-icon}.small {background: url("@{flag-webicons-url}@{flag-webicons-icon}-s.png");}
.no-svg .flag-webicon.@{flag-webicons-icon}.large {background: url("@{flag-webicons-url}@{flag-webicons-icon}-l.png");}
.no-svg .flag-webicon.@{flag-webicons-icon}.xlarge {background: url("@{flag-webicons-url}@{flag-webicons-icon}-xl.png");}
.svg .flag-webicon.@{flag-webicons-icon} {background: url("@{flag-webicons-url}@{flag-webicons-icon}.svg");}
.flag-webicons-loop(@list, (@index + 1));
}
.flag-webicons-loop(@flag-webicons-icons);