Skip to content

Commit 98fbe02

Browse files
committed
Adding Nepal flag
1 parent 3f54cce commit 98fbe02

File tree

9 files changed

+1766
-1583
lines changed

9 files changed

+1766
-1583
lines changed

app/assets/fonts/Symbols.svg

+16-10
Loading

app/assets/fonts/Symbols.ttf

284 Bytes
Binary file not shown.

app/assets/fonts/Symbols.woff

208 Bytes
Binary file not shown.

app/assets/index.html

+1,550-1,550
Large diffs are not rendered by default.

app/styles/_flags/npl.scss

+50-4
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,21 @@
11
// Nepal
22
// http://www.crwflags.com/fotw/flags/np.html
3+
// http://www.vexilla-mundi.com/nepal_flag.html
4+
// http://crwflags.com/fotw/flags/np%27.html
5+
// This one is one of the hardest of the lot. The peculiar shape is done
6+
// through clip-path. We first cut the blue shape in the main div, then we cut
7+
// the red one in an :after. The two symbols are positionned through :before
8+
// and :first-letter. Symbols are simply displayed on the first line each one
9+
// is then placed at the correct position using text-shadow.
10+
// A lot of geometry is involved, don't hesitate to draw it on a sheet of
11+
// paper.
312
@mixin flag-npl() {
413
@include ratio(2 / 3);
514
$unit: $h800;
615
$red: #c8102e;
716
$blue: #0c2340;
817
$white: #FFFFFF;
918

10-
background: $blue;
1119

1220
// We'll name points from A to E, starting on the top and rotating clockwise
1321
$DE: 600 * $unit;
@@ -40,6 +48,7 @@
4048
$C-x: $CJ;
4149
$C-y: $AJ;
4250

51+
background: $blue;
4352
clip-path: polygon(
4453
$A-x $A-y,
4554
$B-x $B-y,
@@ -78,9 +87,9 @@
7887
$E-x-offset: - $border-width;
7988
$E-y-offset: $border-width;
8089

81-
&:before {
82-
content: "";
83-
display: block;
90+
&:after {
91+
content: '';
92+
z-index: 5;
8493
position: absolute;
8594
top: 0;
8695
left: 0;
@@ -98,5 +107,42 @@
98107
}
99108

100109

110+
// Let's roughly calculate the scale difference between the red and blue
111+
// shapes and apply it to everything we calculated here.
112+
$red-rectangle-area: $AE * $DE;
113+
$blue-rectangle-area: ($AE + 2 * $border-width) * ($DE + 2 * $border-width);
114+
$blue-red-ratio: $red-rectangle-area / $blue-rectangle-area;
115+
116+
$star-width: 256 * $unit * $blue-red-ratio;
117+
$star-height: $star-width;
118+
$crescent-width: 240 * $unit * $blue-red-ratio;
119+
$crescent-height: 80 * $unit * $blue-red-ratio;
120+
$crescent-left: $border-width + 150 * $unit * $blue-red-ratio - $crescent-width / 2;
121+
$crescent-top: - $star-height / 2 + 240 * $unit;
122+
123+
// Let's consider M the center of [CD] and L the point where the
124+
// perpendicular to (DE) goes through M
125+
$DM: $CD / 2;
126+
$LM: sin($alpha-CDE) * $DM;
127+
$star-top: - $star-height / 2 + ($height - $LM) + $border-width;
128+
$star-left: - $crescent-width + $crescent-left;
101129

130+
&:before {
131+
content: $UTF8_NPL_CRESCENT+$UTF8_NPL_STAR;
132+
position: relative; // needed for first-letter and z-index to work
133+
z-index: 10;
134+
color: transparent;
135+
font-family: Symbols;
136+
font-size: $star-width;
137+
line-height: $star-width;
138+
text-shadow: $star-left $star-top 0 $white;
139+
}
140+
141+
&:first-letter {
142+
font-family: Symbols;
143+
color: transparent;
144+
line-height: $star-width; // Use a line-height equal to the biggest of the two
145+
font-size: $crescent-width;
146+
text-shadow: $crescent-left $crescent-top 0 $white;
147+
}
102148
};

app/styles/_helpers/symbol_codes.scss

+12-10
Original file line numberDiff line numberDiff line change
@@ -41,13 +41,15 @@ $UTF8_MYS: '\e624';
4141
$UTF8_NAM: '\e625';
4242
$UTF8_NCL: '\e626';
4343
$UTF8_NFK: '\e627';
44-
$UTF8_NRU: '\e628';
45-
$UTF8_PHL: '\e629';
46-
$UTF8_PNG: '\e62a';
47-
$UTF8_RWA: '\e62b';
48-
$UTF8_SAU: '\e62c';
49-
$UTF8_STAR_6_POINTS: '\e62d';
50-
$UTF8_STAR_COMMONWEALTH: '\e62e';
51-
$UTF8_TJK: '\e62f';
52-
$UTF8_TWN: '\e630';
53-
$UTF8_VUT: '\e631';
44+
$UTF8_NPL_CRESCENT: '\e628';
45+
$UTF8_NPL_STAR: '\e629';
46+
$UTF8_NRU: '\e62a';
47+
$UTF8_PHL: '\e62b';
48+
$UTF8_PNG: '\e62c';
49+
$UTF8_RWA: '\e62d';
50+
$UTF8_SAU: '\e62e';
51+
$UTF8_STAR_6_POINTS: '\e62f';
52+
$UTF8_STAR_COMMONWEALTH: '\e630';
53+
$UTF8_TJK: '\e631';
54+
$UTF8_TWN: '\e632';
55+
$UTF8_VUT: '\e633';

src/symbols/Flag_of_Nepal.svg

-9
This file was deleted.

src/symbols/NPL_CRESCENT.svg

+72
Loading

src/symbols/NPL_STAR.svg

+66
Loading

0 commit comments

Comments
 (0)