-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
37 lines (34 loc) · 1.02 KB
/
index.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
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Colors used in this theme</title>
<style type="text/css">
.container {
width: 800px;
margin: 0 auto;
}
.box {
float: left;
width: 128px;
height: 128px;
margin: 10px;
padding: 20px;
color: #fff;
font-weight: bold;
font-size: 18px;
text-align: center;
}
</style>
</head>
<body>
<div class="container">
<div class="box" style="background-color: #27ae60;">Nephritis #27ae60</div>
<div class="box" style="background-color: #7fc719;">Lemon #7fc719</div>
<div class="box" style="background-color: #BF55EC;">Medium Purple #BF55EC</div>
<div class="box" style="background-color: #22A7F0;">Sanmarino Blue #22A7F0</div>
<div class="box" style="background-color: #f1c40f;">Yellow #f1c40f</div>
<div class="box" style="background-color: #ff4f1c;">Orange #ff4f1c</div>
</div>
</body>
</html>