-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathexample.html
More file actions
75 lines (71 loc) · 2.96 KB
/
example.html
File metadata and controls
75 lines (71 loc) · 2.96 KB
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
<!DOCTYPE html>
<html lang="en">
<head>
<title>0ff-white Style Example</title>
<meta charset="utf-8">
<link href="css/normalize.css" rel="stylesheet" media="screen">
<link href="css/0ff.css" rel="stylesheet" media="screen">
</head>
<body style="background-color: rgb(200, 200, 200); background-image: url(images/0ff-white/grass.png);">
<div class="window" style="width: 312px; top: 50px; left: 50px">
<div class="row top bot">
<b class="left">Styling</b>
</div>
<div class="row top">
<div class="outset left" style="width: 300px">
<p>Outset</p>
</div>
</div>
<div class="row top">
<div class="inset left" style="width: 300px">
<p>Inset</p>
</div>
</div>
<div class="row top bot">
<b class="left">Forms and Input</b>
</div>
<div class="row top">
<input type="text" class="left" value="" placeholder="Text Input">
<button class="left">Button</button>
<button class="left iconbutton"><image src="images/0ff-white/icons/cross.svg" alt=""></button>
</div>
<div class="row top bot">
<b class="left">SVG Icons</b>
</div>
<div class="row top">
<image class="icon left" src="images/0ff-white/icons/arrow_up.svg" alt="">
<image class="icon left" src="images/0ff-white/icons/arrow_down.svg" alt="">
<image class="icon left" src="images/0ff-white/icons/arrow_left.svg" alt="">
<image class="icon left" src="images/0ff-white/icons/arrow_right.svg" alt="">
<image class="icon left" src="images/0ff-white/icons/direction_up.svg" alt="">
<image class="icon left" src="images/0ff-white/icons/direction_down.svg" alt="">
<image class="icon left" src="images/0ff-white/icons/direction_left.svg" alt="">
<image class="icon left" src="images/0ff-white/icons/direction_right.svg" alt="">
<image class="icon left" src="images/0ff-white/icons/direction_double_up.svg" alt="">
<image class="icon left" src="images/0ff-white/icons/direction_double_down.svg" alt="">
<image class="icon left" src="images/0ff-white/icons/direction_double_left.svg" alt="">
<image class="icon left" src="images/0ff-white/icons/direction_double_right.svg" alt="">
</div>
<div class="row top">
<image class="icon left" src="images/0ff-white/icons/plus.svg" alt="">
<image class="icon left" src="images/0ff-white/icons/minus.svg" alt="">
<image class="icon left" src="images/0ff-white/icons/equal.svg" alt="">
<image class="icon left" src="images/0ff-white/icons/check.svg" alt="">
<image class="icon left" src="images/0ff-white/icons/cross.svg" alt="">
<image class="icon left" src="images/0ff-white/icons/square.svg" alt="">
<image class="icon left" src="images/0ff-white/icons/triangle.svg" alt="">
<image class="icon left" src="images/0ff-white/icons/circle.svg" alt="">
</div>
<div class="row top bot">
<b class="left">Unfinished</b>
</div>
<div class="row top bot">
<select class="left">
<option>0ff</option>
<option>white</option>
<option>Developers</option>
</select>
</div>
</div>
</body>
</html>