File size: 1,391 Bytes
94c7dc3
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
body{
    background: black;
}

#output{
    text-shadow: black 2.5px 2.5px 2.5px; 
    width: 99%; 
    height: calc(100% - 100px);
    font-size: 65px; 
    border-style: none; 
    color: white;
    background: rgba(0, 0, 0, 0);
    position: absolute;
    resize: none;
    top: 0;
    outline: none;
}

#input{
    height: 100px; 
    border-style: none; 
    width: 90%; 
    font-size: 75px; 
    border-radius: 15px; 
    color: white; 
    background: rgba(0, 0, 0, 0);
    outline: none;
    position: absolute;
    bottom: 0;
    text-transform: lowercase;
    animation: rainbow 9s ease infinite;
    animation-play-state: paused;
}

#talkbutt{
    height: 100px; 
    border-style: none; 
    width: 10%; 
    font-size: 75px; 
    border-radius: 15px; 
    color: white; 
    background: rgba(0, 0, 0, 0);
    outline: none;
    position: absolute;
    background: rgba(0, 0, 0, 0); 
    animation: rainbow 4s ease infinite;
    animation-play-state: paused;
    background-size: 1800% 1800%;
    bottom: 0;
    right: 0;
} #talkbutt:hover{
    background: linear-gradient(124deg, #ff0101, #ff2400, #e81d1d, #e8b71d, #e3e81d, #1de840, #1ddde8, #2b1de8, #dd00f3, #dd00f3);
    background-size: 1000% 1000%;
    animation-play-state: running;
}

@keyframes rainbow { 
    0%{background-position:0% 82%}
    50%{background-position:100% 19%}
    100%{background-position:0% 82%}
}