-
Notifications
You must be signed in to change notification settings - Fork 0
/
gpadmin.html
135 lines (109 loc) · 3.06 KB
/
gpadmin.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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Gitpod Team Admin</title>
<style>
body {
font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}
.wrapper {
width: 300px;
display: flex;
flex-direction: column;
font-size: 14px;
justify-content: space-around;
text-align: center;
align-items: center;
color: #515151;
padding-bottom: 20px;
}
.tiny-text {
font-size: 10px;
}
#title {
font-size: 16px;
color: #CB2128;
font-weight: 500;
}
h1 {
color: green;
}
.text-left {
text-align: left;
}
.toggle {
position: relative;
display: inline-block;
width: 100px;
height: 52px;
background-color: red;
border-radius: 30px;
border: 2px white;
}
.toggle:after {
content: '';
position: absolute;
width: 50px;
height: 50px;
border-radius: 50%;
background-color: white;
top: 1px;
left: 1px;
transition: all 0.5s;
}
.switch-text {
font-family: Arial, Helvetica, sans-serif;
font-weight: bold;
color: white;
}
.checkbox:checked+.toggle::after {
left: 49px;
}
.checkbox:checked+.toggle {
background-color: green;
}
.checkbox {
display: none;
}
.text-container {
padding: 10px;
}
section {
margin: 10px;
}
</style>
</head>
<body>
<div class="wrapper">
<section>
<div id="title">
Gitpod Team Admin
</div>
</section>
<section>
<input type="checkbox" id="toggle" class="checkbox" />
<label for="toggle" class="toggle">
<p class="switch-text">ON OFF</p>
</label>
<div class="text-container" id="status">
</div>
</section>
<section>
<div class="text-container">
If this extension makes your life easier, then you can always...
</div>
<a href="https://www.buymeacoffee.com/mattrudge"
target="_blank"><img src="https://cdn.buymeacoffee.com/buttons/v2/default-white.png" alt="Buy Me A Coffee" style="width: 180px !important;" ></a>
</section>
<section>
<div class="text-container tiny-text text-left">
© <a href="https://mattrudge.net" target="_blank">Matt Rudge</a>, 2021 | <a
href="https://mattrudge.net/privacy.html" target="_blank">Privacy policy.</a>
</div>
</section>
</div>
<script src="js/popup.js"></script>
</body>
</html>