-
Notifications
You must be signed in to change notification settings - Fork 0
/
contact.css
91 lines (85 loc) · 1.61 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
.c {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
text-align: center;
}
.container {
height: 100vh;
}
form {
min-width: 25rem;
}
form .title {
font-family: "Pacifico", cursive;
color: #212529;
font-size: 2.5rem;
}
form .form-control {
background-color: #f2f6f8;
border-radius: 2rem;
border: none;
box-shadow: 0px 7px 5px rgba(0, 0, 0, 0.11);
}
form .form-control.thick {
height: 3.3rem;
padding: 0.5rem 3.5rem;
}
form .form-control:focus {
background-color: #f2f6f8;
border: none;
box-shadow: 0px 7px 5px rgba(0, 0, 0, 0.11);
}
form .message .form-control {
padding: 0.5rem 1.8rem;
}
form ::placeholder {
font-family: "Quicksand", sans-serif;
font-weight: 600;
font-size: 1.1rem;
color: #838788;
position: relative;
left: 0;
}
form input,
form textarea {
font-family: "Quicksand", sans-serif;
color: #212529;
font-size: 1.1rem;
}
form .icon {
color: #57565c;
height: 1.3rem;
position: absolute;
left: 1.5rem;
top: 1.1rem;
}
.btn.btn-primary {
font-family: "Quicksand", sans-serif;
font-weight: bold;
height: 2.5rem;
line-height: 2.5rem;
padding: 0 3rem;
border: 0;
border-radius: 3rem;
background-image: linear-gradient(131deg, #ffd340, #ff923c, #ff923c, #ff923c);
background-size: 300% 100%;
transition: all 0.3s ease-in-out;
}
.btn.btn-primary:hover:enabled {
box-shadow: 0 0.5em 0.5em -0.4em #ff923cba;
background-size: 100% 100%;
transform: translateY(-0.15em);
}
@keyframes video-background {
0% {
opacity: 0;
}
100% {
opacity: 0.9;
}
}
.video-background {
animation: video-background 10s;
}