Files
webextensions-examples/theme-integrated-sidebar/sidebar.html
2017-11-07 14:29:07 -08:00

19 lines
340 B
HTML

<!DOCTYPE html>
<html>
<head>
<title>My theme-integrated sidebar</title>
<style>
#myElement {
font: menu;
font-size: 1.5em;
font-weight: 500;
padding: 1em;
margin: 1em;
}
</style>
</head>
<body>
<div id="myElement">This is an awesome themed element!</div>
<script src="sidebar.js"></script>
</body>
</html>