-
Notifications
You must be signed in to change notification settings - Fork 105
/
Greece.html
40 lines (40 loc) · 998 Bytes
/
Greece.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
<!DOCTYPE html>
<html>
<head>
<title>Greece | Flags</title>
<style>
#greece {
width: 108px;
/* Deliberately chosen as cleanly divisible by 9 for pixel-sharp crispness. :) */
height: 72px;
background: repeating-linear-gradient(180deg,
rgb(13, 94, 175), rgb(13, 94, 175) 8px,
white 8px, white 16px);
box-shadow: 0px 0px 15px 2px #e5e5e5;
position: relative;
}
#greece::before, #greece::after {
content: "";
position: absolute;
display: block;
top: 0;
left: 0;
width: 40px;
height: 40px;
background-color: white;
box-sizing: border-box;
}
#greece::before {
border-top: 16px solid rgb(13, 94, 175);
border-bottom: 16px solid rgb(13, 94, 175);
}
#greece::after {
width: 8px;
left: 16px;
}
</style>
</head>
<body>
<div id="greece"></div>
</body>
</html>