-
Notifications
You must be signed in to change notification settings - Fork 0
/
popup.html
26 lines (26 loc) · 900 Bytes
/
popup.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
<!doctype html>
<html>
<head>
<title>GitHub Reader</title>
<script src="popup.js"></script>
<link rel="stylesheet" href="popup.css" charset="utf-8">
</head>
<body>
<h3>Font Size</h3>
<button id="normal-font">Normal</button>
<button id="bigger-font" class="selected">Bigger</button>
<button id="biggest-font">Huge</button>
<h3>Font Style</h3>
<button id="sans-serif" class="selected">Sans Serif</button>
<button class="serif" id="serif">Serif</button>
<h3>Align</h3>
<button id="left-align" class="selected">Left</button>
<button id="center">Center</button>
<h3>Color</h3>
<button id="day-mode" class="selected">day mode</button>
<button class="night" id="night-mode">night mode</button>
<h3>Fading</h3>
<button id="non-fading" class="selected">non-fading</button>
<button id="fading">fading</button>
</body>
</html>