-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpopup.html
More file actions
67 lines (67 loc) · 1.78 KB
/
popup.html
File metadata and controls
67 lines (67 loc) · 1.78 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
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>Show React</title>
<style>
.faux-icon.border:after {
width: 10px;
height: 10px;
display: inline-block;
content: '';
margin-left: 8px;
outline: 1px solid black;
border: 2px solid hotpink;
}
.faux-icon.outline:after {
width: 10px;
height: 10px;
display: inline-block;
content: '';
margin-left: 8px;
outline: 2px solid hotpink;
border: 1px solid black;
}
.react-outline {
border: 2px solid hotpink;
}
.react-border {
border: 2px dotted mediumpurple;
}
.showreact-logo, .showreact-logo div {
border: 2px dotted mediumpurple;
margin: 8px;
width: 32px;
height: 32px;
}
.showreact-logo div {
border: 2px solid hotpink;
}
.hotpink {
color: hotpink;
}
</style>
</head>
<body>
<div>
<h3 class="flex flex--column flex-align--center flex-justify--center soft push--bottom soft--bottom border--bottom background--light">
<div class="showreact-logo flush--left">
<div>
</div>
</div>
<p class="text--center push--top flush--bottom hotpink"><b>Show React</b>
<span class="micro muted">v1.0</span>
</p>
</h3>
<div class="soft--sides">
<p class="button-group flex">
<button class="oui-button flex--1" id="off"><span class="faux-icon">Off</span></button>
<button class="oui-button flex--1" id="outlines"><span class="faux-icon outline">Outlines</span></button>
<button class="oui-button flex--1" id="borders"><span class="faux-icon border">Borders</span></button>
</p>
</div>
</div>
<script src="popup.js"></script>
<script src="styles.js"></script>
</body>
</html>