parent
30c963a5f0
commit
61a1c93f0f
89 changed files with 15859 additions and 2 deletions
13
public/api_test.html
Normal file
13
public/api_test.html
Normal file
|
@ -0,0 +1,13 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
|
||||
<head>
|
||||
<meta charset="utf-8" />
|
||||
<script src="dist/assets.bundle.js"></script>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<script src="dist/api_test.bundle.js"></script>
|
||||
</body>
|
||||
|
||||
</html>
|
BIN
public/ggb.jpg
Normal file
BIN
public/ggb.jpg
Normal file
Binary file not shown.
After Width: | Height: | Size: 630 KiB |
16
public/index.html
Normal file
16
public/index.html
Normal file
|
@ -0,0 +1,16 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
|
||||
<head>
|
||||
<meta charset="utf-8" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0">
|
||||
<link rel="stylesheet" type="text/css" href="style.css" />
|
||||
<script src="dist/assets.bundle.js"></script>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<div id="app"></div>
|
||||
<script src="dist/admin.bundle.js"></script>
|
||||
</body>
|
||||
|
||||
</html>
|
BIN
public/squared_metal.png
Normal file
BIN
public/squared_metal.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 16 KiB |
68
public/style.css
Normal file
68
public/style.css
Normal file
|
@ -0,0 +1,68 @@
|
|||
html {
|
||||
background: url("ggb.jpg") no-repeat left center fixed;
|
||||
background-size: auto 100%;
|
||||
/* background-image: url("squared_metal.png"); repeat fixed*/
|
||||
background-color: black;
|
||||
height: 100%;
|
||||
}
|
||||
|
||||
body {
|
||||
height: 100%;
|
||||
min-height: 100%;
|
||||
color: #333;
|
||||
font-family: "Helvetica Neue", "Helvetica", "Arial", sans-serif;
|
||||
font-size: 16px;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
outline: none;
|
||||
border: none;
|
||||
}
|
||||
|
||||
a {
|
||||
outline: none;
|
||||
border: none;
|
||||
}
|
||||
|
||||
.anm-rotate {
|
||||
animation: rotate 1s infinite linear;
|
||||
}
|
||||
|
||||
@keyframes rotate {
|
||||
20% {
|
||||
transform: rotate(72deg);
|
||||
}
|
||||
40% {
|
||||
transform: rotate(144deg);
|
||||
}
|
||||
60% {
|
||||
transform: rotate(216deg);
|
||||
}
|
||||
80% {
|
||||
transform: rotate(288deg);
|
||||
}
|
||||
100% {
|
||||
transform: rotate(360deg);
|
||||
}
|
||||
}
|
||||
|
||||
.anm-lighter:hover {
|
||||
animation: lighter 0.5 1;
|
||||
}
|
||||
|
||||
@keyframes lighter {
|
||||
0% {
|
||||
opacity: 100%;
|
||||
}
|
||||
50% {
|
||||
opacity: 50%;
|
||||
}
|
||||
}
|
||||
|
||||
::-moz-selection {
|
||||
background: #2ecc71;
|
||||
color: #fff;
|
||||
}
|
||||
::selection {
|
||||
background: #2ecc71;
|
||||
color: #fff;
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue