-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpopup.html
38 lines (38 loc) · 997 Bytes
/
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
<html>
<script src="popup.js"></script>
<style>
html {
width: 300px;
color: #7c87e8;
}
.card {
background-color: #fff;
border-radius: 2px;
box-shadow: -1px 2px 4px rgba(0,0,0,.25), 1px 1px 3px rgba(0,0,0,.1);
margin: 0 auto;
max-width: 340px;
padding: 10px;
margin-bottom:5px;
display:grid;
}
.greyed {
opacity: 0.7;
}
.greyed img {
opacity: 0.2;
}
.card img {
width: 30px;
}
</style>
<H1>FFCS.ooo</H1>
<div class="card greyed" id="ffcs-card">
<p>Step 1: Login on ffcs.ooo </p><img src="tick.svg" />
</div>
<div class="card greyed" id="vit-card">
<p>Step 2: Login on vtop </p><img src="tick.svg" />
</div>
<div class="card greyed" id="sync-card">
<p>Step 3: Sync data </p><img src="tick.svg" />
</div>
</html>