roshnn24 commited on
Commit
6d3ecaa
·
verified ·
1 Parent(s): 27b1b54

Upload 9 files

Browse files
.gitattributes CHANGED
@@ -33,3 +33,4 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
33
  *.zip filter=lfs diff=lfs merge=lfs -text
34
  *.zst filter=lfs diff=lfs merge=lfs -text
35
  *tfevents* filter=lfs diff=lfs merge=lfs -text
 
 
33
  *.zip filter=lfs diff=lfs merge=lfs -text
34
  *.zst filter=lfs diff=lfs merge=lfs -text
35
  *tfevents* filter=lfs diff=lfs merge=lfs -text
36
+ static/backgrnd.jpg filter=lfs diff=lfs merge=lfs -text
static/backgrnd.jpg ADDED

Git LFS Details

  • SHA256: 4e9f2f6fd3ba936f2d56134c3b6e60b9040ecc41d336276d162f67ad98099eed
  • Pointer size: 132 Bytes
  • Size of remote file: 2.96 MB
static/img2.jpg ADDED
static/img4.jpg ADDED
static/img5.jpg ADDED
static/img6.jpg ADDED
static/styles.css ADDED
@@ -0,0 +1,294 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ /* Farm Tech System */
2
+
3
+ *{
4
+ margin: 0;
5
+ padding: 0;
6
+ box-sizing: border-box;
7
+
8
+ }
9
+
10
+ .body{
11
+ width: 100%;
12
+ padding: 50px;
13
+ background-image: url('tea-estate.jpg');
14
+ }
15
+
16
+
17
+ body {
18
+ background-image: url('tea-estate.jpg');
19
+ font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
20
+ font-weight: bolder;
21
+ font-size: x-large;
22
+ height: 100vh;
23
+ color: #123C69;
24
+ }
25
+
26
+ header {
27
+ color: white;
28
+ padding: 8px ;
29
+ text-align: center;
30
+ }
31
+
32
+ .logo {
33
+ font-family: 'Poppins';
34
+ font-size: 24px;
35
+ text-align: center;
36
+ }
37
+
38
+ .navbar {
39
+ margin-top: 20px;
40
+ }
41
+
42
+ .nav-links {
43
+ list-style: none;
44
+ padding: 0;
45
+ display: flex;
46
+ justify-content: center;
47
+ }
48
+
49
+ .nav-links li {
50
+ margin: 0 15px;
51
+ }
52
+
53
+ .nav-links a {
54
+ color:#AC3B61 ;
55
+ font-weight: bolder;
56
+ font-size: larger;
57
+ text-decoration: none;
58
+ }
59
+
60
+
61
+ h2 {
62
+ font-size: 24px;
63
+ margin-bottom: 10px;
64
+ }
65
+
66
+ p {
67
+ line-height: 1.6;
68
+
69
+ }
70
+
71
+
72
+
73
+
74
+ .nav-links li:hover a
75
+ {
76
+ background: rgb(255, 255, 255);
77
+ color: black;
78
+ padding: .25rem .5rem;
79
+ transition: all ease-in 300ms;
80
+ border-radius: 25px;
81
+
82
+ }
83
+
84
+ .animate-charcter
85
+ {
86
+ text-align: right;
87
+ display: flex;
88
+ align-items: center;
89
+ justify-content: center;
90
+ background-image: linear-gradient(
91
+ -225deg,
92
+ #231557 0%,
93
+ #44107a 29%,
94
+ #ff1361 67%,
95
+ #fff800 100%
96
+ );
97
+
98
+ background-size: auto auto;
99
+ background-clip: border-box;
100
+ background-size: 200% auto;
101
+ color: #AC3B61;
102
+ background-clip: text;
103
+ text-justify: transparent;
104
+ -webkit-background-clip: text;
105
+ -webkit-text-fill-color: transparent;
106
+ animation: textclip 2s linear infinite;
107
+ display: inline-block ;
108
+ font-size: 80px;
109
+ font-family: Georgia, 'Times New Roman', Times, serif;
110
+ font-weight: bold;
111
+
112
+ }
113
+
114
+ @keyframes textclip {
115
+ to {
116
+ background-position: center;
117
+ }
118
+ };
119
+
120
+
121
+ *{
122
+ background-color: #eee2dc;
123
+ margin-bottom: 20px;
124
+ padding: 0;
125
+ box-sizing: border-box;
126
+ }
127
+
128
+ body{
129
+ align-items: center;
130
+ justify-content: center;
131
+ }
132
+
133
+ @keyframes scroll{
134
+ 0%{
135
+ transform: translateX(0);
136
+ }
137
+ 100%{
138
+ transform: translateX(calc(-250px * 7));
139
+ }
140
+ }
141
+
142
+ .slider{
143
+ height: 200px;
144
+ margin: auto;
145
+ overflow: hidden;
146
+ position: relative;
147
+ width: auto;
148
+ padding: 0 30px;
149
+ }
150
+
151
+ /* .slider::before, .slider::after {
152
+ content: '';
153
+ width: calc(50vw - 125px); /* Adjust the width for the desired padding */
154
+
155
+
156
+ *{
157
+ margin: 0;
158
+ padding: 0;
159
+ box-sizing: border-box;
160
+ font-family: Verdana, Geneva, Tahoma, sans-serif;
161
+ }
162
+
163
+ .container{
164
+ display: flex;
165
+ /* flex-direction: column; */
166
+ justify-content: center;
167
+ align-items: center;
168
+ text-align: center;
169
+ font-weight: bolder;
170
+ margin: 20px 20px 0 20px;
171
+ padding-top: 10%;
172
+ }
173
+
174
+ .container .heading{
175
+ width: 50%;
176
+ padding-bottom: 50px;
177
+ }
178
+
179
+ .container .heading h3{
180
+ font-size: 3em;
181
+ font-weight: bolder;
182
+ padding-bottom: 10px;
183
+ border-bottom: 3px solid #222;
184
+ }
185
+
186
+ .container .heading h3 span{
187
+ font-weight: 50;
188
+ }
189
+
190
+ .container .box{
191
+ display: flex;
192
+ flex-direction: row;
193
+ justify-content: space-between;
194
+ }
195
+
196
+ .container .box .dream{
197
+ display: flex;
198
+ flex-direction: column;
199
+ width: 32.5%;
200
+ }
201
+
202
+ .container .box .dream img{
203
+ width: 100%;
204
+ padding-bottom: 15px;
205
+
206
+ }
207
+
208
+ /* @media only screen and (max-width: 769px){
209
+ .container .box{
210
+ flex-direction: column;
211
+ }
212
+ }
213
+
214
+ .container .box .dream{
215
+ width: 100%;
216
+ } */
217
+
218
+
219
+ /* Default styles for all devices */
220
+ .body {
221
+ font-size: 16px;
222
+ }
223
+
224
+ /* Tablet styles */
225
+ @media (max-width: 1024px) {
226
+ body {
227
+ font-size: 14px;
228
+ }
229
+ }
230
+
231
+ /* Mobile styles */
232
+ @media (max-width: 768px) {
233
+ body {
234
+ font-size: 12px;
235
+ }
236
+ }
237
+
238
+ /* Adjust the footer for mobile and tablet views */
239
+ @media only screen and (max-width: 768px) {
240
+ .footer {
241
+ width: 125%;
242
+ flex-direction: column;
243
+ align-items: center;
244
+ }
245
+
246
+ .contact {
247
+ text-align: left;
248
+ text-indent: 0;
249
+ margin: 10px 0;
250
+ font-size: x-small;
251
+ }
252
+
253
+ .contact h2{
254
+ text-align: left;
255
+ text-indent: 0;
256
+ margin: 10px 0;
257
+ font-size: x-small;
258
+
259
+ }
260
+
261
+ .iframe
262
+ {
263
+ width: 100%;
264
+ padding: 10px;
265
+ }
266
+
267
+ .contact p:first-child{
268
+
269
+ text-align: left;
270
+ text-indent: 0;
271
+ margin: 10px 0;
272
+ font-size: x-small;
273
+
274
+ }
275
+
276
+ .contact p:last-child{
277
+
278
+ text-align: left;
279
+ text-indent: 0;
280
+ margin: 10px 0;
281
+ font-size: x-small;
282
+ }
283
+
284
+ .developer {
285
+ text-align: right;
286
+ text-indent: 0;
287
+ margin: 10px 0;
288
+ font-size: x-small;
289
+ }
290
+
291
+ .footer {
292
+ width: 100vw !important;
293
+ }
294
+ }
static/tea-estate.jpg ADDED
static/ultrasonic02.png ADDED
static/uv.jpg ADDED