-
Notifications
You must be signed in to change notification settings - Fork 105
/
Taiwan.html
47 lines (47 loc) · 1.04 KB
/
Taiwan.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
44
45
46
47
<!DOCTYPE html>
<html>
<head>
<title>Taiwan | Flags</title>
<meta charset="utf-8"/>
<style>
#taiwan {
position: relative;
width: 900px;
height: 600px;
background-color: rgb(254, 0, 0);
}
#taiwan::before, #taiwan::after {
position: absolute;
top: 0;
left: 0;
width: 50%;
height: 50%;
}
#taiwan::before {
content: "✹";
box-sizing: border-box;
padding-top: 3.75px;
padding-left: 3.75px;
font-family: sans-serif;
font-size: 300px;
text-align: center;
line-height: 100%;
color: rgb(255, 255, 255);
background-color: rgb(0, 0, 149);
}
#taiwan::after {
content: "";
top: 90px;
left: 165px;
width: 112.5px;
height: 112.5px;
border: 7.5px solid rgb(0, 0, 149);
border-radius: 50%;
background-color: rgb(255, 255, 255);
}
</style>
</head>
<body>
<div id="taiwan"></div>
</body>
</html>