-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrandom1.html
More file actions
92 lines (82 loc) · 1.96 KB
/
random1.html
File metadata and controls
92 lines (82 loc) · 1.96 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<style>
body, html {
margin: 0;
padding: 0;
height: 100%;
display: flex;
justify-content: center;
align-items: center;
background: #111;
overflow: hidden;
color: #fff;
}
.starry-background {
position: absolute;
width: 100%;
height: 100%;
background: url('https://www.transparenttextures.com/patterns/stardust.png') repeat;
animation: moveBackground 15s linear infinite;
}
.skill-container {
display: flex;
justify-content: center;
align-items: center;
flex-wrap: wrap;
z-index: 10;
}
.dreamy-skill {
font-size: 2rem;
padding: 15px 30px;
margin: 20px;
font-family: 'Roboto', sans-serif;
background: rgba(255, 255, 255, 0.1);
border-radius: 10px;
text-align: center;
text-transform: uppercase;
box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
animation: floatUp 10s ease-in-out infinite;
}
.dreamy-skill:hover {
transform: scale(1.2);
box-shadow: 0 0 30px rgba(255, 255, 255, 1);
}
@keyframes floatUp {
0% {
transform: translateY(0);
}
50% {
transform: translateY(-30px);
}
100% {
transform: translateY(0);
}
}
@keyframes moveBackground {
0% {
background-position: 0 0;
}
100% {
background-position: 100% 100%;
}
}
</style>
</head>
<body>
<div class="starry-background">
<div class="skill-container">
<span class="dreamy-skill">AI</span>
<span class="dreamy-skill">Machine Learning</span>
<span class="dreamy-skill">Web Development</span>
<span class="dreamy-skill">Mobile Development</span>
<span class="dreamy-skill">Entrepreneurship</span>
<span class="dreamy-skill">Leadership</span>
</div>
</div>
</body>
</html>