-
Notifications
You must be signed in to change notification settings - Fork 105
/
Canada.html
33 lines (31 loc) · 821 Bytes
/
Canada.html
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
30
31
32
33
<!DOCTYPE html>
<html>
<head>
<title>Canada | Flags</title>
<style>
#canada {
width: 150px;
height: 75px;
background: linear-gradient(90deg, #f00 25%, #fff 25%, #fff 75%, #f00 75%);
box-shadow: 0px 0px 15px 2px #e5e5e5;
position: relative;
}
#canada::before {
content: "\1F341"; /* Unicode MAPLE LEAF */
position: absolute;
top: 0;
right: 0;
left: 0;
text-align: center;
font-size: 50px;
line-height: 75px;
/* Make it red, since the maple leaf emoji gets coloured gold by default */
-webkit-filter: hue-rotate(301.5deg) saturate(10);
filter: hue-rotate(301.5deg) saturate(10);
}
</style>
</head>
<body>
<div id="canada"></div>
</body>
</html>