hi

  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
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="UTF-8" />
    <meta name="viewport" content="width=device-width, initial-scale=1" />

    <!-- favicon and page title -->
    <link rel="icon" type="image/x-icon" href="" />
    <title>title of the website</title>
    <style>
      :root {
        --lightpink: #ffd6f2;
        --lightpurple: #bdb2d5;
        --brightest: #c8f0f2;
      }
      * {
        box-sizing: border-box;
        margin: 0;
        padding: 0;
        font-size: 1rem;
      }
      @font-face {
        font-family: 'willow';
        src: url('https://file.garden/ZmPIsJUcxFQr2zrj/fonts/willow.ttf');
      }
      body {
        height: 100vh;
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        font-family: 'willow';
      } 
      @import url('https://fonts.googleapis.com/css2?family=Yomogi&display=swap');
      #outer-container {
        width: max-content;
        height: max-content;
      }

      #sugar {
        width: 100%;
        object-position: center;
        transition: transform 0.25s ease, filter 0.25s ease;
        height: 13rem;
    object-fit: cover;
    object-position: center;
    width: 16rem;
    filter: drop-shadow(0px 0px 0px white);
      }
      #sugar:hover {
        transform:scale(1.1) rotate(2deg);
      }
    .pix-mini {
        text-shadow: 1px 0 black, -1px 0 black, 0 1px black, 0 -1px black;
      }
      #wobb0 {
        color: var(--lightpink)
      }
      #wobb1 {
        color: #DEC4E4;
      }
      #wobb2 {
        color: var(--lightpurple)
      }
      #wobb3 {
        color: #C3D1E4;
      }
      #wobb4 {
        color: var(--brightest)
      }
      #left {
        width: 70%;
        display: flex;
        flex-wrap: wrap;
        padding-right: 10px

    }
      #right {
        width: 30%;
        overflow: hidden;
        background: linear-gradient(0deg, rgba(255, 226, 241, 1) 0%, rgba(255, 255, 255, 1) 100%);
        box-shadow: inset 0 8px 10px 1px white, inset 0 0 10px 1px #f4b0d7, 0 0 0 1px black;
        border-radius: 0.5rem;
        display: flex;
        flex-wrap: wrap;
        align-content: center;
        justify-content: center;

      }

      #frame {
        width: 80%;
    height: 80%;
    border-radius: 0.5rem;
    -webkit-backface-visibility: hidden;
    -webkit-transform: translate3d(0, 0, 0);
    overflow: hidden;
    background: linear-gradient(0deg, rgba(255,226,241,1) 0%, rgba(255,255,255,1) 100%);
    box-shadow: inset 0 8px 10px 1px white, inset 0 0 10px 1px #f4b0d7, 0 0 0 1px black;
    margin: auto;
    width: 16rem;
      }
    .bar li::marker {
    content: '';
    font-size: 0;
    }
    .bar li {
      width: fit-content;
    }

    button { 
      width: 6rem;
    height: 2.3rem;
    padding: 5px;
    display: inline-flex;
    justify-content: center;
    /* background-image: radial-gradient(100% 100% at top, #fbcee6 30%, #ffe9f6 66%, #fbcee6 66% 70%, #fff9fb 90%) !important; */
    border-radius: 8px !important;
    border: 1px solid #7277a4 !important;
    /* filter: drop-shadow(0 0 2px #a18b98); */
    background: linear-gradient(0deg, #e0faff 0%, #f4eeff 100%);
    box-shadow: inset 0 8px 10px 1px white, inset 0 0 10px 1px #9a7dda;
    transition: transform 0.25s ease, filter 0.25s ease;
    font-family: "Yomogi", cursive;
    font-weight: 700;
    margin: .5rem 0
}

    button:hover {
    /*background: linear-gradient(180deg, white 2%, #fafafa 2%, #fafafa 20%, #c9cdf2 100%) !important;*/
    display: inline-flex !important;
    opacity: 100%;
    box-shadow: inset 0 8px 10px 1px white, inset 0 0 10px 1px #9a7dda, 0 0 0px 2px hsl(259, 14%, 48%, .3);
    }
    button:active {
      box-shadow: inset 0 0 2px 2px #abaaddab, inset 0 8px 10px 1px white, inset 0 0 10px 1px #9a7dda, 0 0 3px 2px #e8cddc;
    }

.background {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    overflow: hidden;
    z-index: -20;
    }

    .background span {
    width: 40vmin;
    height: 40vmin;
    border-radius: 20vmin;
    backface-visibility: hidden;
    position: absolute;
    animation-name: move;
    animation-duration: 6s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    }
    .background span:nth-child(1) {
    color: var(--lightpink);
    top: 39%;
    left: 27%;
    animation-duration: 12.8s;
    animation-delay: -13.7s;
    transform-origin: 6vw -9vh;
    box-shadow: -40vmin 0 5.009616418vmin currentColor;
    }
    .background span:nth-child(2) {
    color: var(--lightpurple);
    top: 93%;
    left: 75%;
    animation-duration: 11.2s;
    animation-delay: -1.6s;
    transform-origin: -16vw 7vh;
    box-shadow: -40vmin 0 7.4277373741vmin currentColor;
    }
    .background span:nth-child(3) {
    color: var(--brightest);
    top: 79%;
    left: 74%;
    animation-duration: 11.1s;
    animation-delay: -1.4s;
    transform-origin: -14vw 13vh;
    box-shadow: 40vmin 0 10.5566948409vmin currentColor;
    }
    .background span:nth-child(4) {
    color: var(--lightpink);
    top: 27%;
    left: 65%;
    animation-duration: 10.5s;
    animation-delay: -10.3s;
    transform-origin: 15vw -5vh;
    box-shadow: 40vmin 0 14.5287386636vmin currentColor;
    }
    .background span:nth-child(5) {
    color: var(--lightpurple);
    top: 40%;
    left: 87%;
    animation-duration: 11.7s;
    animation-delay: -12.5s;
    transform-origin: -6vw 12vh;
    box-shadow: 40vmin 0 14.0437486596vmin currentColor;
    }
    .background span:nth-child(6) {
    color: var(--brightest);
    top: 12%;
    left: 27%;
    animation-duration: 11.7s;
    animation-delay: -3.6s;
    transform-origin: 8vw -17vh;
    box-shadow: -40vmin 0 8.8226591104vmin currentColor;
    }
    .background span:nth-child(7) {
    color: var(--lightpink);
    top: 30%;
    left: 24%;
    animation-duration: 10.3s;
    animation-delay: -15.7s;
    transform-origin: 0vw -19vh;
    box-shadow: -40vmin 0 6.8918709005vmin currentColor;
    }
    .background span:nth-child(8) {
    color: var(--lightpurple);
    top: 48%;
    left: 48%;
    animation-duration: 10.2s;
    animation-delay: -10.4s;
    transform-origin: 10vw -24vh;
    box-shadow: -40vmin 0 7.5512122265vmin currentColor;
    }
    .background span:nth-child(9) {
    color: var(--brightest);
    top: 73%;
    left: 28%;
    animation-duration: 10.3s;
    animation-delay: -10.3s;
    transform-origin: -13vw 18vh;
    box-shadow: -40vmin 0 14.6182025673vmin currentColor;
    }
    .background span:nth-child(10) {
    color: var(--lightpink);
    top: 2%;
    left: 6%;
    animation-duration: 16s;
    animation-delay: -7.3s;
    transform-origin: -6vw -12vh;
    box-shadow: -40vmin 0 13.7729871267vmin currentColor;
    }
      a {
        color: #9588c1;

      }

    @keyframes move {
    100% {
    transform: translate3d(0, 0, 1px) rotate(360deg);
    }
    }
    </style>
  </head>
  <body>

        <div class="background">
        <span></span>
        <span></span>
        <span></span>
        <span></span>
        <span></span>
        <span></span>
        <span></span>
        <span></span>
        <span></span>
        <span></span>
        </div>

    <div id="outer-container">
        <!-- all HTML content goes here -->
        <div class="jig">Welcome to <span id="wobble" class="pix-mini">site</span> </div>
        <div id="main">
            <div id="left">
            <div id="frame">
            <img id="sugar" src="https://file.garden/ZmPIsJUcxFQr2zrj/sugar%20glass.png">
            <!--img id="sugar" src="https://file.garden/ZmPIsJUcxFQr2zrj/sugar%20glass.png"> -->
        </div>
          <span style="width: 100%; display: inline-flex; flex-wrap: wrap; align-content: center; justify-content: center;">
            <a href="https://stellular.net/ovallext">cr wren</a>
          </span>
            </div>
            <div id="right">
            <ul class="bar">
                <li>
                  <a><button>1st button</button></a>
                </li>
                <li>
                  <a><button>2nd button</button></a>
                </li>
                <li>
                  <a><button>3rd button</button></a>
                </li>
                <li>
                  <a><button>4th button</button></a>
                </li>
            </ul>
            </div>

            </div>

    </div>

    <style>
  @font-face {
    font-family: 'Janda Manatee Bubble';
    src: url(https://file.garden/ZmPIsJUcxFQr2zrj/fonts/Margarine-Regular.ttf);
  }
#main {
    box-shadow: inset 13px 0px 6px -10px rgb(66 66 66 / 15%), inset -13px 0px 6px -10px rgb(66 66 66 / 15%), inset 0px 13px 6px -10px #ffffff, inset 0px -13px 6px -10px rgb(66 66 66 / 10%), 0 0 5px #404040, 0 0 0 1px black;
    width: 30rem;
    background-color: white;
    padding: 10px;
    border-radius: 10px;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
}

.jig {
    margin-bottom: 1rem;
    font-family: 'Janda Manatee Bubble';
    filter: drop-shadow( 0 1px white) drop-shadow( 1px 0 white) drop-shadow( 0 -1px white) drop-shadow( -1px 0 white) drop-shadow( 0 1px #35344a) drop-shadow( 1px 0 #35344a) drop-shadow( 0 -1px #35344a) drop-shadow(-1px 0 #35344a)
}
.jig, #wobb0, #wobb1, #wobb2, #wobb3, #wobb4, #wobb5 {
    font-size: 1.7rem;
}

@media screen and (orientation:portrait) and (max-width: 530px) { 

* {
    font-size: 1.1rem;
}
#main {
    width: 100%;
}

#outer-container {
    width: 100%;
    max-width: 700px;
    padding: 10px
}
body {
    height: 100vh;
        justify-content: center;
        /* padding: 2px; */
        flex-direction: column;
        flex-wrap: nowrap;
        align-content: center;
        align-items: center;
        overflow: clip;
        width: 100%;
}
.background {
    width: 100%;
    height: 100%;
}
.jig, #wobb0, #wobb1, #wobb2, #wobb3, #wobb4, #wobb5 {
    font-size: 1.9rem
}
button {
  font-size: 1rem

}

    }
@media screen and (max-width: 400px) {
  #left, #right {
  width: 100%
}
button {
  margin: 0 5px;
  font-size: 1rem
}
.bar {
  height: 3rem;
        display: flex;
        flex-direction: column;
        overflow-x: scroll;
        align-content: space-between;
        justify-content: center;
        flex-wrap: wrap;
  padding: 5px;
}

.bar li {
  display: inline-flex;
}
#left {
  padding: 0;
}
}
    </style>


<script type="text/javascript">
    // <![CDATA[
    var speed=100; // speed of wobbling, lower is faster
    var height=3; // height of wobbling in pixels
    var alink=""; // page to link text to (set to ="" for no link)

    /****************************
    *    Wobbly Text Effect     *
    *(c) 2003-6 mf2fm web-design*
    *  http://www.mf2fm.com/rv  *
    * DON'T EDIT BELOW THIS BOX *
    ****************************/
    var wobtxt, wobble, wobcnt=0;
    window.onload=function() { if (document.getElementById) {
      var i, wobli;
      wobble=document.getElementById("wobble");
      wobtxt=wobble.firstChild.nodeValue;
      while (wobble.childNodes.length) wobble.removeChild(wobble.childNodes[0]);
      for (i=0; i<wobtxt.length; i++) {
        wobli=document.createElement("span");
        wobli.setAttribute("id", "wobb"+i);
        wobli.style.position="relative";
        wobli.appendChild(document.createTextNode(wobtxt.charAt(i)));
        if (alink) {
          wobli.style.cursor="pointer";
          wobli.onclick=function() { top.location.href=alink; }
        }
        wobble.appendChild(wobli);
      }
      setInterval("wobbler()", speed);
    }}

    function wobbler() {
      for (var i=0; i<wobtxt.length; i++) document.getElementById("wobb"+i).style.top=Math.round(height*Math.sin(i+wobcnt))+"px"
      wobcnt++;
    }
    // ]]>
    </script>
      </body>
</html>
Edit
Pub: 05 Sep 2024 16:10 UTC
Edit: 02 Oct 2024 20:11 UTC
Views: 125