-
Notifications
You must be signed in to change notification settings - Fork 0
/
logo1.css
executable file
·96 lines (81 loc) · 1.82 KB
/
logo1.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
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
93
94
95
@import url("https://fonts.googleapis.com/css2?family=Spartan:wght@700&display=swap");
@import url('https://fonts.googleapis.com/css2?family=Bowlby+One+SC&display=swap');
@keyframes typing { from { width: 0; } }
@keyframes blink-caret { 55% { border-color: transparent; } }
@-webkit-keyframes slide-up {
0% {
transform: translateY(-100px);
}
100% {
transform: translateY(0);
}
}
@keyframes slide-up {
0% {
transform: translateY(-200px);
}
100% {
transform: translateY(0);
}
}
.caption{
background-size: cover;
display: flex;
flex-direction: column;
overflow: hidden;
/* font-family: 'Bebas Neue', cursive; */
color: white;
position: relative;
margin-left: 20%;
}
::-moz-selection {
background: rgba(170, 170, 170, 0.3);
}
::selection {
background: rgba(170, 170, 170, 0.3);
}
.heading {
text-align: center;
font-size: 50px;
width: -webkit-max-content;
width: -moz-max-content;
width: fit-content;
display: flex;
flex-direction: row;
}
.heading > div {
overflow: hidden;
}
.heading > div > p {
width: -webkit-max-content;
width: -moz-max-content;
width: max-content;
white-space: nowrap;
margin: 0;
line-height: 117%;
font-family: 'Bowlby One SC', cursive
}
.green {
color: rgb(231, 208, 0);
font-weight: 800;
}
div.heading > div {
-webkit-animation-delay: 5;
animation-delay: 5;
}
div.heading > div:nth-child(2) > p {
-webkit-animation-delay: 5.05s;
animation-delay: 5.05s;
}
div.heading > div p span green{
-webkit-animation-delay: 5s;
animation-delay: 5s;
}
div.heading > div:nth-child(3) > p {
-webkit-animation-delay: 5.075s;
animation-delay: 5.075s;
}
.slide-up {
-webkit-animation: slide-up 0.9s cubic-bezier(0.65, 0, 0.35, 1) both;
animation: slide-up 1.5s cubic-bezier(0.65, 0, 0.35, 1) both;
}