-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathstyle.css
More file actions
86 lines (75 loc) · 1.29 KB
/
style.css
File metadata and controls
86 lines (75 loc) · 1.29 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
@import url('https://fonts.googleapis.com/css2?family=Red+Rose:wght@300;400;700&display=swap');
*{
margin:0px;
padding:0px;
font-family: 'Red Rose';
font-weight: 700;
color:white;
}
body {
min-height: 100vh;
}
.color-text{
position: relative;
display:flex;
width: 100vw;
justify-content: center;
align-items: center;
}
#text{
text-align: center;
color:black;
width:100%;
background: #00ff00;
font-size: 40px;
}
.main{
position: relative;
display:flex;
justify-content: center;
align-items: center;
width: 100vw;
height: 100vh;
background: black;
}
h1{
display: flex;
justify-content: center;
width: 100vw;
}
span{
font-size: 80px;
}
#gen{
position: absolute;
color:gold;
right:60%;
top:37%;
}
#X{
position: absolute;
font-size: 200px;
text-shadow: 0 0 50px #00ff00,
0 0 100px #00ff00,
0 0 150px #00ff00,
0 0 200px #00ff00,
0 0 250px #00ff00;
top:29%;
cursor: pointer;
animation: ani 5s ease infinite;
}
#club{
position: absolute;
color:gold;
left:60%;
top:37%;
}
@keyframes ani
{
0%{
filter: hue-rotate(0deg)
}
100%{
filter: hue-rotate(360deg);
}
}