-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathcontact.css
103 lines (96 loc) · 1.96 KB
/
contact.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
96
97
98
99
100
101
102
103
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans&display=swap");
body {
align-items: center;
margin: auto;
width: 490px;
height: 495px;
padding-top: 5%;
}
#box {
background: linear-gradient(
277deg,
#7c3ef9,
#843cc4,
#8d3b8f,
#953959,
#9e3724
);
width: 481px;
padding-left: 10px;
position: absolute;
font-family: "Noto Sans", sans-serif;
background-size: 1000% 1000%;
color: white;
border-top-right-radius: 20px;
border-top-left-radius: 20px;
-webkit-animation: AnimationName 10s ease infinite;
-moz-animation: AnimationName 10s ease infinite;
animation: AnimationName 10s ease infinite;
}
@-webkit-keyframes AnimationName {
0% {
background-position: 0% 50%;
}
50% {
background-position: 100% 50%;
}
100% {
background-position: 0% 50%;
}
}
@-moz-keyframes AnimationName {
0% {
background-position: 0% 50%;
}
50% {
background-position: 100% 50%;
}
100% {
background-position: 0% 50%;
}
}
@keyframes AnimationName {
0% {
background-position: 0% 50%;
}
50% {
background-position: 100% 50%;
}
100% {
background-position: 0% 50%;
}
}
form {
padding-top: 80px;
background-color: black;
padding-left: 10px;
padding-bottom: 30px;
border-bottom-left-radius: 20px;
border-bottom-right-radius: 20px;
border-top-right-radius: 30px;
border-top-left-radius: 30px;
width: 481px;
-webkit-animation: AnimationNameTwo 10s ease infinite;
-moz-animation: AnimationNameTwo 10s ease infinite;
animation: AnimationNameTwo 10s ease infinite;
}
#sub-button {
height: 60px;
width: 60px;
border-radius: 40px;
font-family: "Noto Sans", sans-serif;
color: white;
font-size: 15px;
background: linear-gradient(
277deg,
#7c3ef9,
#843cc4,
#8d3b8f,
#953959,
#9e3724
);
margin-left: 43%;
}
#message {
display: flex;
}