Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit e7b5c69

Browse files
committed
start dev
1 parent 1ff06e6 commit e7b5c69

File tree

5 files changed

+1206
-1
lines changed

5 files changed

+1206
-1
lines changed

‎.gitignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,3 @@ node_modules/
22
temp
33
*.log
44
.idea/
5-
/dist

‎dist/assets/rxjs.png

28.4 KB
Loading

‎dist/index.html

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
4+
<head>
5+
<meta charset="UTF-8">
6+
<title>rxjs typescript starterkit</title>
7+
<link rel="stylesheet" href="main.css" />
8+
</head>
9+
10+
<body>
11+
<img class="rxjs-logo" width="100" src="assets/rxjs.png">
12+
<script src="main.js"></script>
13+
</body>
14+
15+
</html>

‎dist/main.css

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
body {
2+
display: flex;
3+
padding: 0;
4+
margin: 0;
5+
height: 100vh;
6+
align-items: center;
7+
justify-content: center;
8+
background: #252525;
9+
}
10+
11+
.rxjs-logo {
12+
animation: rotate 2s infinite linear;
13+
}
14+
15+
@keyframes rotate {
16+
0% {
17+
filter: blur(0);
18+
transform: rotate(0);
19+
}
20+
50% {
21+
filter: blur(3px);
22+
transform: rotate(180deg);
23+
}
24+
100% {
25+
filter: blur(0);
26+
transform: rotate(360deg);
27+
}
28+
}

0 commit comments

Comments
 (0)