forked from urdarinda/LISTS
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
119 lines (105 loc) · 2.17 KB
/
index.html
File metadata and controls
119 lines (105 loc) · 2.17 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
<!-- This is the extension html page -->
<!DOCTYPE html>
<html>
<head>
<title>LISTS</title>
<link href='https://fonts.googleapis.com/css?family=Roboto+Slab:400,100,300,700' rel='stylesheet' type='text/css'>
<link href="https://fonts.googleapis.com/css?family=Muli|Roboto" rel="stylesheet">
<style type="text/css">
#preloader {
height:100%;
position: absolute;
left: 50%;
z-index: 999;
overflow: visible;
}
#preloader-icon {
position:relative;
left: -50%;
top:40%;
border: 5px solid #f3f3f3;
border-radius: 50%;
border-top: 5px solid #383c42;
width: 50px;
height: 50px;
-webkit-animation: spin 1s linear infinite; /* Safari */
animation: spin 1s linear infinite;
}
#preloader h1 {
position:relative;
left:-50%;
}
.fade {
-moz-animation : fadeout 1s linear;
-webkit-animation: fadeout 1s linear;
animation : fadeout 1s linear;
}
/* Safari */
@-webkit-keyframes spin {
0% { -webkit-transform: rotate(0deg); }
100% { -webkit-transform: rotate(360deg); }
}
@keyframes spin {
0% { transform: rotate(0deg); }
100% { transform: rotate(360deg); }
}
@keyframes fadeout {
0% {opacity:1;}
100% {opacity:0;}
}
a{
text-decoration: none;
color: black;
transition: all 0.1s linear;
}
img {
width: 50px;
height: 50px;
float: left;
padding: 6px;
}
a:hover{
color: brown;
}
#card{
background-color: #fff;
padding: 0px 10px;
border: 1px solid #ccc;
margin: 6px;
transition: all 0.1s linear;
}
#card_container{
background-color: #fffeee;
padding:-5px;
border: 1px solid #ddd;
width: 400px;
}
#card:hover{
background-color: #f1f1f1;
}
#header{
color: brown;
margin-bottom: -13px;
margin-top: 10px;
font-size: 13px;
font-family: 'Roboto', sans-serif;
}
#snippet{
color: #555;
font-size: 12px;
font-family: 'Muli', sans-serif;
}
</style>
</head>
<body>
<div id="preloader">
<div id="preloader-icon"></div>
</div>
<div id="card_container">
<center><h1 style="color: red;">LISTS loading </h1></center>
<div style="height:120px;">
</div>
</div>
</body>
</html>
<script type="text/javascript" src="popup.js"></script>