-
Notifications
You must be signed in to change notification settings - Fork 1
/
textspeechconverter_css.html
112 lines (96 loc) · 2.19 KB
/
textspeechconverter_css.html
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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
<style>
* {
font-family: 'Yusei Magic', sans-serif;
outline: none;
}
body {
padding: 0 5vw;
background: linear-gradient(217deg, rgba(255,0,0,.8), rgba(255,0,0,0) 70.71%),
linear-gradient(127deg, rgba(0,255,0,.8), rgba(0,255,0,0) 70.71%),
linear-gradient(336deg, rgba(0,0,255,.8), rgba(0,0,255,0) 70.71%);
height: 100vh;
background-attachment: fixed;
background-size: 400% 400%;
animation: background-move 90s ease infinite;
}
#first_screen {
height: 100vh;
}
#second_screen {
height: 100vh;
}
.grid-container {
display: grid;
grid-template-rows: repeat(3, 1fr);
text-align: center;
padding: 0 10vw;
}
.title {
width: 100%;
text-align: center;
font-size: 48px;
color: white;
}
textarea {
height: 100px;
width: 500px;
border-radius: 10px;
padding: 10px;
}
button {
cursor: pointer;
border-radius: 100px;
background-color: black;
padding: 10px 23px;
color: white;
border: none;
}
#preloader1 {
position: relative;
right: -47.5%;
padding: 30px 0 0 0;
}
#preloader2 {
position: relative;
right: -47.5%;
padding: 30px 0 0 0;
}
span {
display: block;
bottom: 0px;
width: 9px;
height: 5px;
background: #9b59b6;
position: absolute;
animation: wave 1.5s infinite ease-in-out;
}
span:nth-child(2) {
left: 11px;
animation-delay: 0.2s;
}
span:nth-child(3) {
left: 22px;
animation-delay: 0.4s;
}
span:nth-child(4) {
left: 33px;
animation-delay: 0.6s;
}
span:nth-child(5) {
left: 44px;
animation-delay: 0.8s;
}
@keyframes background-move {
0% {background-position: 0% 0%;}
25% {background-position: 0% 100%;}
50% {background-position: 100% 100%;}
75% {background-position: 100% 0%;}
100% {background-position: 0% 0%;}
}
@keyframes wave {
0% {height:5px;transform:translateY(0px);background:#9b59b6;}
25% {height:40px;transform:translateY(20px);background:#3498db;}
50% {height:5px;transform:translateY(0px);background:#9b59b6;}
100% {height:5px;transform:translateY(0px);background:#9b59b6;}
}
</style>