-
Notifications
You must be signed in to change notification settings - Fork 0
/
contact.css
156 lines (153 loc) · 2.34 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
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
body{
margin:0px;
background-color:#dee1de;
}
header{
background:url('https://preview.colorlib.com/theme/cozastore/images/bg-01.jpg.webp') no-repeat center center/cover;
width:100%;
}
.navbar2{
background-color:transparent;
}
.navbar2 ul{
overflow:auto;
margin:0px;
}
.navbar2 li{
list-style:none;
float:left;
padding:20px;
font-size:20px;
}
.navbar2 li a{
text-decoration:none;
color:white;
}
.navbar2 li a:hover{
color:red;
}
header h1{
font-size:60px;
padding:40px 10px 80px 10px;
text-align:center;
color:white;
white-space:auto;
overflow-wrap:break-word;
}
@media(max-width:600px){
.navbar2{
background-color:#595e5e;
}
}
.contact{
display:flex;
flex-direction:row;
justify-content:center;
align-items:center;
flex-wrap:wrap;
margin:30px;
background-color: rgb(190, 184, 184);
border-radius: 12px;
}
.input{
height:auto;
display:flex;
flex-direction:column;
margin: 25px 40px;
overflow: hidden;
}
@media(max-width:270px){
.contact{
margin:7px
}
.input{
margin:25px 3px;
}
}
.input input{
padding:10px;
margin:10px;
height:auto;
width:300px;
}
.input textarea{
padding:10px;
margin:10px;
height:auto;
}
.btn{
margin:18px 0px;
display:flex;
justify-content:center;
align-items:center;
}
.btn button{
background-color:#160f0f;
padding:14px 40px;
color:white;
font-size:18px;
border-radius:30px;
}
.btn button:hover{
background-color:#ff5555;
color:black;
}
@media(max-width:400px){
.image{
max-width:100%;
height:auto;
}
.image img{
width:100%;
height:auto;
}
}
.terms{
background-color:#535362;
box-sizing:border-box;
display:grid;
grid-template-columns:1fr 1fr 1fr;
grid-gap:1rem;
grid-template-columns:repeat(auto-fill,minmax(100px,0.5fr));
grid-column-gap:10rem;
grid-row-gap:4rem;
}
#term1{
display:flex;
flex-direction:column;
justify-content:center;
align-items:center;
}
#term1 a{
display:block;
color:white;
padding:15px 0px 15px 25px;
text-decoration:none;
font-size:18px;
}
#term2{
display:flex;
flex-direction:column;
justify-content:center;
align-items:center;
}
#term2 a{
display:block;
font-size:18px;
padding:15px 0px 15px 25px;
color:white;
text-decoration:none;
}
#term3{
display:flex;
flex-direction:column;
justify-content:center;
align-items:center;
}
#term3 a{
display:block;
font-size:18px;
padding:15px 24px 29px 13px;
color:white;
text-decoration:none;
}