stylus/popup.html

56 lines
999 B
HTML
Raw Normal View History

<html>
<head>
<style>
body {
width: 200px;
}
#no-styles {
font-style: italic;
}
.disabled {
color: #BBB;
}
.checker {
display: inline;
}
.style-name {
2014-10-03 20:31:25 +00:00
cursor: default;
display: inline;
font-weight: bold;
}
.actions {
font-size: x-small;
}
a, a:visited {
color: black;
}
.entry {
padding-bottom: 0.5em;
margin-bottom: 0.5em;
border-bottom: 1px solid black;
}
#find-styles, #manage-styles {
font-size: smaller;
}
#find-styles {
margin-bottom: 0.5em;
2012-04-16 01:56:12 +00:00
}
</style>
2012-04-16 01:56:12 +00:00
<script src="localization.js"></script>
<script src="health.js"></script>
<script src="storage.js"></script>
<script src="messaging.js"></script>
</head>
<body id="stylish-popup">
2012-04-16 01:56:12 +00:00
<div id="installed"></div>
2012-04-16 01:56:12 +00:00
<div id="find-styles"><a id="find-styles-link" href="#"></a></div>
2013-07-04 22:12:16 +00:00
<div id="manage-styles"><a id="open-manage-link" href="manage.html"></a></div>
2012-04-16 01:56:12 +00:00
<script src="popup.js"></script>
2012-04-16 01:56:12 +00:00
</body>
2014-10-03 20:31:25 +00:00
</html>