-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathforeign.css
93 lines (76 loc) · 1.57 KB
/
foreign.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
body {
font-family: Arial, sans-serif;
background-color: #f2f2f2;
margin: 0;
padding: 0;
background: linear-gradient(-45deg, blue,rgb(7, 187, 237),rgb(38, 93, 223));
background-size: 400% 400%;
animation: gradient 15s ease infinite;
height: 100vh;
}
@keyframes gradient {
0% {
background-position: 0% 50%;
}
50% {
background-position: 100% 50%;
}
100% {
background-position: 0% 50%;
}
}
.container {
max-width: 350px;
margin:0 auto;
background-color: rgb(193, 190, 190);
padding: 30px;
border-radius: 50px;
}
.theTitle {
text-align: center;
margin-bottom: 20px;
}
form {
margin-bottom: 20px;
}
label {
font-weight: bold;
}
input[type="text"],
input[type="email"],
input[type="tel"],
select {
width: 100%;
padding: 10px;
margin-bottom: 10px;
border-radius: 5px;
border: 1px solid rgb(194, 206, 218);
}
button[type="submit"] {
background-color: #139fe0;
color: #fff;
padding: 15px 50px;
border: none;
border-radius: 5px;
cursor: pointer;
display: block;
margin: 15px auto;
}
button {
background-color: #139fe0;
color: #fff;
padding: 15px 50px;
border: none;
border-radius: 5px;
cursor: pointer;
display: block;
margin: 5px auto;
margin-top: 2px;
}
footer {
text-align: center;
margin-top: 20px;
padding: 10px 0;
background-color: rgb(248, 243, 243);
color: rgb(9, 8, 8);
}