-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
46 lines (45 loc) · 1015 Bytes
/
style.css
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
body {
margin: 0;
padding: 0;
justify-content: center;
align-items: center;
height: 100vh;
background-color: #000;
overflow: hidden;
}
center{
margin-top: 200px;
}
p {
position: relative;
font-family: sans-serif;
text-transform: uppercase;
font-size: 2em;
letter-spacing: 4px;
overflow: hidden;
background: linear-gradient(90deg, #000, #fff, #000);
background-repeat: no-repeat;
background-size: 80%;
animation: animate 3s linear infinite;
-webkit-background-clip: text;
background-clip: text;
-webkit-text-fill-color: rgba(255, 255, 255, 0);
}
button{
border:none;
outline: none;
border-radius: 50px;
background-color: rgba(69, 69, 69, 0.099);
color: rgb(153, 153, 153);
cursor: pointer;
width:200px;
height: 40px;
}
@keyframes animate {
0% {
background-position: -500%;
}
100% {
background-position: 500%;
}
}