-
Notifications
You must be signed in to change notification settings - Fork 105
/
pakistan.html
43 lines (41 loc) · 1.09 KB
/
pakistan.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
34
35
36
37
38
39
40
41
42
43
<!DOCTYPE html>
<html>
<head>
<title> Pakistan | Flags </title>
<style>
.Pakistan {
height: 200px;
width:350px;
border: 1px solid #708090;
background: -webkit-linear-gradient(left, white 27%, green 25%); /* For Safari 5.1 to 6.0 */
background: -o-linear-gradient(left,white 27%, green 25%); /* For Opera 11.1 to 12.0 */
background: -moz-linear-gradient(left, white 27%, green 25%); /* For Firefox 3.6 to 15 */
background: linear-gradient(left, white 27%, green 25%); /* Standard syntax (must be last) */
}
.Pakistan::after {
content: "\2605";
position:relative;
display:inline-block;
color:#fff;
font-size:4em;
left:225px;
top:35px;
transform:rotate(100deg);
}
.Pakistan::before {
content:"";
position:absolute;
width:160px;
height:160px;
border-radius:50%;
box-shadow: 15px 15px 0 0 #fff;
left:180px;
top:0px;
transform:rotate(80deg);
}
</style>
</head>
<body>
<div class="Pakistan"></div>
</body>
</html>