-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
53 lines (46 loc) · 921 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
47
48
49
50
51
52
53
html, body {
width: 100%;
height:100%;
}
body {
background: linear-gradient(-20deg, #161c26, #3d4757, #6f7378);
background-size: 400% 400%;
animation: gradient 15s ease infinite;
}
@keyframes gradient {
0% {
background-position: 0% 50%;
}
50% {
background-position: 100% 50%;
}
100% {
background-position: 0% 50%;
}
}
textarea {
resize: none;
outline: none !important;
box-shadow: 0 0 20px #719ECE;
font-size: 12px;
}
p {
position: fixed;
bottom: 0;
}
#shadowtext {
color: #a5b7bb;
text-shadow: 2px 2px #616161;
}
button {
background: linear-gradient(-20deg, #3d4757, #6f7378);
border: none;
color: #a5b7bb;
text-shadow: 2px 2px #616161;
padding: 15px 32px;
text-align: center;
text-decoration: none;
display: inline-block;
box-shadow: 0 0 20px #719ECE;
font-size: 17.5px;
}