-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.css
111 lines (104 loc) · 2.33 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
104
105
106
107
108
109
110
111
* {
padding: 0;
margin: 0;
box-sizing: border-box;
font-family: 'Montserrat', sans-serif;
}
body {
background-image: linear-gradient(270deg, #ffffff 0%, #ffffff 100%);
}
.footer_get_touch_outer {
margin-top: 10px;
}
.container {
width: 100%;
max-width: 1140px;
margin: auto;
}
.grid-70-30 {
display: grid;
grid-template-columns: 70% 30%;
}
.get_form_inner {
display: block;
width: 900px;
margin-left: 100px;
padding: 50px 50px;
background: rgb(37, 35, 35);
box-shadow: -4px -2px 20px -7px #0d0d0e;
}
input[type="text"], input[type="text"], input[type="email"], input[type="tel"] {
border: 2px solid #141414;
border-radius: 2px;
color: #050505;
height: 42px;
padding: 0 0 0 20px;
width: 100%;
outline: 0;
}
.grid-50-50 {
display: grid;
grid-template-columns: 1fr 1fr;
grid-gap: 20px;
}
.grid-full {
margin: 20px 0;
color: black;
}
textarea {
border: 2px solid #0e0e0e;
border-radius: 2px;
color: #080808;
padding: 12px 0 0 20px;
width: 100%;
outline: 0;
margin-bottom: 20px;
}
.get_form_inner_text h3 {
text-align: center;
color: #e5dddd;
font-size: 26px;
font-weight: 600;
margin-bottom: 40px;
}
input[type="submit"] {
display: inline-block;
font-size: 16px;
text-transform: uppercase;
background: transparent;
border: 2px solid;
font-weight: 500;
padding: 10px 20px;
outline: 0;
cursor: pointer;
background-image: linear-gradient(270deg, #08AEEA 0%, #2AF598 100%);
transition: all 0.3s cubic-bezier(0.55, 0.055, 0.675, 0.19);
-webkit-transition: all 0.3s cubic-bezier(0.55, 0.055, 0.675, 0.19);
-moz-transition: all 0.3s cubic-bezier(0.55, 0.055, 0.675, 0.19);
-ms-transition: all 0.3s cubic-bezier(0.55, 0.055, 0.675, 0.19);
-o-transition: all 0.3s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
/* header */
header {
justify-content: space-between;
}
ul.navbar {
list-style-type: none;
display: flex;
align-items: center;
margin: 0;
padding: 0;
background-color: #333;
overflow: hidden;
float: right;
}
ul.navbar li a {
display: flex;
color: white;
margin-right: 100;
padding: 10px 16px;
text-decoration: none;
}
ul.navbar li a:hover:not(.active) {
background-color: #f00a0a;
}