A-Toasty-OWA/popup.html

72 lines
1.5 KiB
HTML
Raw Normal View History

2021-02-22 07:26:24 +01:00
<!DOCTYPE html>
<html>
<head>
<style>
body {
font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif
margin: 10px;
width: 220px;
}
h1 {
font-weight: 300;
font-size: 1.7rem;
margin-bottom: 12px;
margin-top: 0px;
text-align: center;
}
h2 {
font-size: 1.1rem;
}
div,
select {
font-size: 0.7rem;
}
div+div {
padding-top: 10px;
}
label {
width: 110px;
display: inline-block;
}
</style>
<script src='jquery.3.3.1.slim.js'></script>
</head>
<body>
<h1>A Toast to OWA</h1>
<div>
<label>Email Delay: </label>
<select id="emailDelay">
<option value=-1>Forever </option>
<option value=3>3 Seconds</option>
<option value=4>4 Seconds</option>
<option value=5>5 Seconds</option>
<option value=10>10 Seconds</option>
<option value=20>20 Seconds</option>
</select>
</div>
<div>
<label>Calendar Delay: </label>
<select id="calendarDelay">
<option value=-1>Forever </option>
<option value=3>3 Seconds</option>
<option value=4>4 Seconds</option>
<option value=5>5 Seconds</option>
<option value=10>10 Seconds</option>
<option value=20>20 Seconds</option>
</select>
</div>
<div>
<label>Show Quick Links:</label>
<input id="quickLinks" type="checkbox">
</div>
</body>
<script src='popup.js'></script>
</html>