-
Notifications
You must be signed in to change notification settings - Fork 105
/
Texas.html
42 lines (39 loc) · 918 Bytes
/
Texas.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
<!DOCTYPE html>
<html>
<head>
<title>Texas | Flags</title>
<meta charset="utf-8" />
<style>
#texas {
width: 900px;
height: 600px;
background: repeating-linear-gradient(180deg,
white, white 300px,
#BF0A30 300px, #BF0A30 600px);
box-shadow: 10px 10px 15px 10px #bbbbbb;
position: relative;
}
#texas::before, #texas::after {
position: absolute;
display: block;
top: 0;
left: 0;
width: 300px;
height: 600px;
box-sizing: border-box;
color: white;
}
#texas::before {
content: "";
background-color: #002868;
}
#texas::after {
content: "★";
font-size: 225px;
font-family: 'DejaVu Sans', sans-serif;
line-height: 100%;
text-align: center;
padding-top: 187px;
}
</style>
</head>