-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathoptions.html
More file actions
141 lines (141 loc) · 4.14 KB
/
options.html
File metadata and controls
141 lines (141 loc) · 4.14 KB
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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>GoFastCall</title>
<style type="text/css">
* {
box-sizing: border-box;
}
body {
margin: 0;
background: #FCFFFE;
font-family: system-ui, sans-serif;
text-align: center;
}
main {
width: 600px;
margin: auto;
}
a {
color: #33CC99;
}
a:hover {
color: #44DDAA;
}
a:active {
color: #22BB88;
}
h1 {
margin: 36px 0 24px;
font-size: 32px;
line-height: 16px;
}
h1 img {
width: 48px;
height: 48px;
margin: 0 16px -12px 0;
}
h1 a {
text-decoration: none;
}
h2 {
font-size: 16px;
font-weight: normal;
color: #666;
}
h3 {
font-size: 20px;
}
h4 {
font-size: 18px;
margin: 6px 0 15px;
}
summary > div {
font-size: 16px;
margin-top: 36px;
padding: 16px;
background: #F0FFF9;
border: 1px solid #CCFFEE;
border-radius: 8px;
}
.table .tr {
height: 35px;
display: flex;
}
.table .tr .th {
width: 160px;
padding: 8px;
font-weight: bold;
text-align: left;
}
.table .tr .td {
width: 406px;
padding: 8px;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
text-align: left;
}
.buttons {
margin: 36px 0;
color: #666;
}
button {
background: #33CC99;
color: white;
outline: 0;
border: 0;
}
button:hover {
cursor: pointer;
background: #44DDAA;
}
button:active {
background: #22BB88;
}
#logged_out button {
font-size: 18px;
padding: 12px 24px;
border-radius: 24px;
}
#logged_in button {
font-size: 14px;
padding: 8px 16px;
border-radius: 16px;
margin: 0 8px;
}
.footer {
margin-top: 32px;
font-size: 13px;
color: #666;
}
</style>
</head>
<body>
<main>
<h1>
<a target="_blank" href="https://gofastcall.com">
<img src="128.png" />GoFastCall
</a>
</h1>
<h2>Seamlessly jump into your next meeting</h2>
<summary id="meetings"></summary>
<div class="buttons">
<div id="logged_out" style="display: none;">
<p>To get started,</p>
<button id="connect">Connect with Google Calendar</button>
<p>Next, click on the extension button<br />when it's time for your meeting.</p>
</div>
<div id="logged_in" style="display: none;">
<button id="refresh">Refresh</button> <button id="disconnect">Disconnect</button>
</div>
</div>
<div class="footer">
<p><a target="_blank" href="https://gofastcall.com/faq">Have questions?</a> • Created by <a target="_blank" href="https://twitter.com/stephenou">@stephenou</a></p>
</div>
</main>
<script src="gcal.js"></script>
<script src="options.js"></script>
</body>
</html>