-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathani-txt.css
More file actions
49 lines (48 loc) · 807 Bytes
/
Copy pathani-txt.css
File metadata and controls
49 lines (48 loc) · 807 Bytes
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
* {
padding:0;
margin:0;
font-family: sans-serif;
}
body {
background: #000;
}
.container {
text-align: center;
position : absolute;
top: 50%;
left : 50%;
transform: translate(-50%, -50%);
width : 100%;
}
.container span{
text-transform : uppercase;
display: block;
}
.text1 {
color : white;
font-size : 60px;
font-weight: 700;
letter-spacing: 8px;
margin-bottom: 20px;
background: black;
position : relative;
animation: text 3s 1;
}
.text2 {
font-size: 30px;
color : #6ab04c;
}
@keyframes text {
0% {
color : black;
margin-bottom : -40px;
}
30%{
letter-spacing: 25px;
margin-bottom: -40px;
}
85% {
letter-spacing: 8px;
margin-bottom : -40px;
}
}