-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
156 lines (138 loc) · 2.45 KB
/
style.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
*{
padding:0;
margin:0;
}
body{
background: rgb(29, 94, 90);
font-family: "Arial",cursive;
font-size:24px;
}
.main-container{
width:95%;
margin:auto;
}
.container1{
margin-left: 5%;
}
.container2{
display: flex;
justify-content: flex-start;
flex-wrap: wrap;
margin-top: 20px;
margin-left: 5%;
}
.container3{
display:none;
position: absolute;
top:26%;
left:40%;
}
textarea{
box-shadow: 10px 10px 24px 0px rgba(0,0,0,0.75);
outline:none;
border:none;
width:275px;
height:275px;
padding:40px 25px 25px 25px;
}
svg{
color:gray;
}
#check-icon{
position:absolute;
right:17%;
top:4%;
}
#x-icon{
position: absolute;
right:8%;
top:4%;
}
.header{
background:white;
}
.container{
max-width:1152px;
padding:0 15px;
margin:0 auto;
}
.inp{
padding-top:1rem;
padding-left:15rem;
}
.header nav .left a{
color:var(--pure);
text-decoration: none;
margin-right:1rem;
transition:all .3s ease;
}
.header nav .left a:hover{
color:var(--primary);
}
.header nav{
padding:01rem 0;
}
.header nav .branding{
margin-right:3rem;
}
.header nav .branding a{
margin-right:1rem;
}
section.contact .card-wrapper{
display:grid;
grid-template-columns: repeat(3,1fr);
grid-gap:3rem;
padding-top: 1rem;
}
section.contact .card-wrapper .card{
text-align: center;
}
section.contact .card-wrapper .card img{
margin-bottom: 3rem;
}
section.contact .card-wrapper .card h1{
font-weight: 400;
margin-bottom: 1rem;
}
section.contact .card-wrapper .card h6{
font-size:1rem;
font-weight: 400;
color:var(--ternery);
margin-bottom: 4rem;
}
section.contact .input-wrap{
display:grid;
grid-template-columns: repeat(2,1fr);
grid-gap:2rem;
margin-bottom: 2rem;
}
section.contact .input-wrap-2{
display:flex;
flex-direction: column;
}
section.contact input{
padding:0.5rem;
border:1px solid var(--light);
}
section.contact .input-wrap-2 input{
margin-bottom:2rem;
border:1px solid var(--light);
font-size:0.9rem;
}
section.contact .input-wrap-2 textarea{
padding:0.5rem;
border:1px solid var(--light);
font-size:0.9rem;
}
section.contact .input-wrap-2 textarea:focus{
outline:none;
}
section.contact input:focus{
outline:none;
}
section.contact .btn-wrapper{
text-align: center;
}
::placeholder {
font-family: "Brush Script MT",cursive;
}