-
Notifications
You must be signed in to change notification settings - Fork 8
/
popup.html
66 lines (65 loc) · 1.79 KB
/
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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>AI Event Scheduler</title>
<link rel="stylesheet" href="style/materialize.min.css">
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<style>
.button-container {
display: flex;
justify-content: center;
margin-top: 10px;
white-space: nowrap;
}
.btn-small {
width: 42px;
height: 32px;
background-color: white;
}
.btn-small i {
display: flex;
justify-content: center;
align-items: center;
width: 100%;
height: 100%;
margin: 0;
color: black;
}
.btn-small.active {
background-color: #26a69a;
}
#modeText {
margin-top: 10px;
font-size: 14px;
}
#optionsButton {
text-transform: none;
width: 100%;
}
</style>
</head>
<body>
<div class="container">
<div id="modeText"><b>Mode</b>: new tab</div>
<div class="row">
<div class="button-container">
<button id="newTabButton" class="btn-small waves-effect waves-light active">
<i class="tiny material-icons">tab</i>
<button id="icalButton" class="btn-small waves-effect waves-light">
<i class="tiny material-icons">event</i>
</button>
<button id="autoButton" class="btn-small waves-effect waves-light">
<i class="tiny material-icons">brightness_auto</i>
</button>
</div>
</div>
<div class="row">
<button id="optionsButton" class="btn waves-effect waves-light black">⚙ Settings</button>
</div>
</div>
<script src="style/materialize.min.js"></script>
<script src="popup.js" type="module"></script>
</body>
</html>