generated from ricoThaka/hacker
-
Notifications
You must be signed in to change notification settings - Fork 2
/
compiling_css.html
966 lines (746 loc) · 41.8 KB
/
compiling_css.html
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
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
<!doctype html>
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>(-_(-_-)_-) CurrentlyCompiling (-_(-_-)_-) </title>
<link rel="stylesheet" href="./compiling.css" type="text/css" media="screen" />
</head>
<body>
<script src="script.js"></script>
<div id="navcontainer">
<div class="logo">./HoleToAnotherUniverse</div>
<ul id="navlist">
<li><a href="https://ricothaka.github.io/">HOME</a></li>
<li><a href="https://ricothaka.github.io/htau.html">HTAU</a></li>
<li><a href="https://ricothaka.github.io/cv">ResumE</a></li>
<li><a href="https://ricothaka.github.io/webpagewebpage.html" >WebSiteS</a></li>
</ul>
</div>
<div class="top-container">
<svg class="gradient-text" id="headerMargins" width="50%" height="50%" viewBox="0 0 508.204 141.732" xml:space="preserve" xmlns="http://www.w3.org/2000/svg">
<path d="M91.991 104.699c1.576 5.961 4.119 8.266 8.613 8.266 4.659 0 7.102-2.799 7.102-8.266V3.2h29.184v101.499c0 14.307-1.856 20.506-9.11 27.762-5.228 5.229-14.871 9.271-27.047 9.271-9.837 0-19.25-3.256-25.253-9.27-5.263-5.273-8.154-10.689-12.672-27.764L44.9 37.033c-1.577-5.961-4.119-8.265-8.613-8.265-4.66 0-7.103 2.798-7.103 8.265v101.5H0v-101.5C0 22.727 1.857 16.527 9.111 9.271 14.337 4.044 23.981 0 36.158 0c9.837 0 19.25 3.257 25.253 9.27 5.263 5.273 8.154 10.689 12.672 27.764zm386.047 33.834L444.334 33.096c-.372-1.164-.723-2.152-1.263-2.811-.926-1.127-2.207-1.719-3.931-1.719-1.723 0-3.004.592-3.931 1.719-.539.658-.891 1.646-1.262 2.811l-33.703 105.437h-30.167l36.815-115.177c1.918-6 4.66-11.094 8.139-14.488C421.002 3.047 428.038 0 439.141 0s18.14 3.047 24.109 8.867c3.479 3.395 6.221 8.488 8.14 14.488l36.814 115.177zm-149.16 0c19.12 0 28.446-4.062 35.814-11.389 8.153-8.105 12.053-16.973 12.053-30.213 0-11.699-4.283-22.535-10.804-29.019-8.526-8.479-19.116-11.151-36.384-11.151l-24.187-.001c-9.242 0-12.925-1.117-15.839-3.98-2.001-1.964-2.939-4.885-2.939-8.328 0-3.559.857-7.074 3.303-9.475 2.171-2.131 5.13-3.109 10.816-3.109h69.903V3.2H306.05c-19.12 0-28.445 4.063-35.814 11.389-8.152 8.105-12.053 16.972-12.053 30.212 0 11.701 4.283 22.536 10.804 29.019 8.527 8.479 19.116 11.152 36.384 11.152l24.188.002c9.242 0 12.925 1.115 15.839 3.979 2.001 1.965 2.939 4.885 2.939 8.328 0 3.559-.857 7.074-3.302 9.475-2.172 2.131-5.131 3.109-10.817 3.109h-72.094l-27.651-86.509c-1.918-6-4.66-11.094-8.139-14.488C220.363 3.047 213.327 0 202.224 0s-18.14 3.047-24.108 8.867c-3.48 3.395-6.221 8.488-8.139 14.488l-36.815 115.177h30.166l33.704-105.437c.372-1.164.723-2.152 1.263-2.811.926-1.127 2.208-1.719 3.931-1.719s3.004.592 3.931 1.719c.54.658.891 1.646 1.262 2.811l33.704 105.437z" fill="#262626"/></svg>
</div>
<!--
<img
src="https://upload.wikimedia.org/wikipedia/commons/a/a4/Mars_2020_JPL_second_insignia.svg"
alt="triangle with all three sides equal"
height="87"
width="100" />
-->
<div id="content">
<header>
<h1>CurrentlyCompiling::</h1>
<h2>Putting it all together</h2>
</header>
<p><a href="#Section_further_down">About the code ... Layout</a></p>
<hr />
<a href="https://apod.nasa.gov/apod/image/2402/Rosette2024newt533mmcopy.jpg">
<IMG SRC="https://apod.nasa.gov/apod/image/2402/Rosette2024newt533mmcopy1024.png"
alt="See Explanation. Clicking on the picture will download
the highest resolution version available." style="max-width:100%"></a>
<img src="https://raw.githubusercontent.com/ricoThaka/ricothaka.github.io/master/assets/images/bronzelover.jpg" alt="Normani, is an American singer and dancer" border="0" />
<div class="lovergraff">
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
</div>
<div class="normani">
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
</div>
<img src="https://raw.githubusercontent.com/ricoThaka/ricothaka.github.io/master/assets/images/lover.PNG" alt="Normani, is an American singer and dancer" border="0" />
<div class="lovergraff">
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
</div>
<embed width="100%" height="300" scrolling="no" frameborder="no" allow="autoplay" src="https://w.soundcloud.com/player/?url=https%3A//api.soundcloud.com/tracks/899207614&color=%2379f281&auto_play=false&hide_related=false&show_comments=true&show_user=true&show_reposts=false&show_teaser=true&visual=true" />
<a href="https://soundcloud.com/itsellamai" title="Ella Mai" target="_blank" ">Ella Mai</a> · <a href="https://soundcloud.com/itsellamai/not-another-love-song" title="Not Another Love Song" target="_blank" ">Not Another Love Song</a>
<img src="https://science.nasa.gov/wp-content/uploads/2024/03/5247_1_Bright_Gully_Deposits_on_Mars-full2.jpg" />
<div class="pinupGallery">
<div class="expandingGallery"><img src="https://raw.githubusercontent.com/ricoThaka/saa2/master/assets/images/sartu_rik_equal_ek.png" />
<img src="https://i1.sndcdn.com/artworks-yp5s7R5Iq55q-0-t500x500.jpg" />
<img src="https://i1.sndcdn.com/artworks-P2PTj5dAzg6o2EFl-FUqxIw-t500x500.jpg" />
<img src="https://i1.sndcdn.com/artworks-3pLwykq3ZwnP-0-t500x500.jpg" />
<img src="https://i1.sndcdn.com/artworks-vnZ6boaXo6VHyb6M-I8Wg4w-t500x500.jpg" />
<img src="https://i1.sndcdn.com/artworks-QwpUDhaNaX8l-0-t500x500.jpg" />
<img src="https://i1.sndcdn.com/artworks-cfb8WkJBQq7T-0-t240x240.jpg" />
<img src="https://i1.sndcdn.com/artworks-000327590304-xr9ecf-t500x500.jpg" />
<img src="https://i1.sndcdn.com/artworks-c8b32a26-992b-4caf-b624-a35574dee181-0-t500x500.jpg" />
<img src="https://i1.sndcdn.com/artworks-000672452881-jgqq2m-t500x500.jpg" />
<img src="https://i1.sndcdn.com/artworks-000209566479-edo6z8-t500x500.jpg" />
<img src=" https://i1.sndcdn.com/artworks-000652828381-8tet2w-t500x500.jpg" >
<img src=" https://i1.sndcdn.com/artworks-000245306268-5fow74-t1080x1080.jpg" >
<img src=" https://i1.sndcdn.com/artworks-ikxDwx60XoJJ-0-t500x500.jpg" >
<img src="https://i1.sndcdn.com/artworks-Tz3UrUOI1wzpn6Qm-jwEiJQ-t500x500.jpg" />
</div>
<div class=" expandingGallery"><img src="https://raw.githubusercontent.com/ricoThaka/saa2/master/assets/images/sartu_rik_equal_ek.png" />
<img src="https://i1.sndcdn.com/artworks-D91rb2LE45DCZq47-cKlxJg-t500x500.jpg" />
<img src="https://i1.sndcdn.com/artworks-yp5s7R5Iq55q-0-t500x500.jpg" />
<img src="https://i1.sndcdn.com/artworks-P2PTj5dAzg6o2EFl-FUqxIw-t500x500.jpg" />
<img src="https://i1.sndcdn.com/artworks-XuEIzk2XtG1w-0-t500x500.jpg" />
<img src="https://i1.sndcdn.com/artworks-3pLwykq3ZwnP-0-t500x500.jpg" />
<img src="https://i1.sndcdn.com/artworks-4dc78d42-fd38-49f1-9b32-9ab17c01be5e-0-t500x500.jpg" />
<img src="https://i1.sndcdn.com/artworks-5xn3faFeZPrR-0-t500x500.jpg" />
<img src="https://i1.sndcdn.com/artworks-c8b32a26-992b-4caf-b624-a35574dee181-0-t500x500.jpg" />
<img src="https://i1.sndcdn.com/artworks-pTTYEez5J7KK-0-t500x500.jpg" />
<img src=" https://i1.sndcdn.com/artworks-bVGSGmebg9BL-0-t500x500.jpg" >
<img src=" https://i1.sndcdn.com/artworks-Uo4vDzYQJYJ4N13Z-L5JDyg-t500x500.jpg" >
<img src=" https://i1.sndcdn.com/artworks-y6PQ4NplD627-0-t500x500.jpg" >
<img src="https://i1.sndcdn.com/artworks-Tz3UrUOI1wzpn6Qm-jwEiJQ-t500x500.jpg" />
<img src="https://i1.sndcdn.com/artworks-000241498370-z5arf6-t1080x1080.jpg" />
</div>
<div class="expandingGallery">
<img src="https://raw.githubusercontent.com/ricoThaka/saa2/master/assets/images/sartu_rik_equal_ek.png" />
<img src="https://i1.sndcdn.com/artworks-D91rb2LE45DCZq47-cKlxJg-t500x500.jpg" />
<img src="https://i1.sndcdn.com/artworks-yp5s7R5Iq55q-0-t500x500.jpg" />
<img src="https://i1.sndcdn.com/artworks-Bb3uOwFb27u1-0-t500x500.jpg" />
<img src="https://i1.sndcdn.com/artworks-LbISElQPoHcR-0-t500x500.jpg" />
<img src="https://i1.sndcdn.com/artworks-XuEIzk2XtG1w-0-t500x500.jpg" />
<img src="https://i1.sndcdn.com/artworks-QwpUDhaNaX8l-0-t500x500.jpg" />
<img src="https://i1.sndcdn.com/artworks-gi6yWdzMAGrU90wX-Ib51gA-t500x500.jpg" />
<img src="https://i1.sndcdn.com/artworks-c8b32a26-992b-4caf-b624-a35574dee181-0-t500x500.jpg" />
<img src="https://i1.sndcdn.com/artworks-000241498370-z5arf6-t1080x1080.jpg" />
<img src="https://i1.sndcdn.com/artworks-pTTYEez5J7KK-0-t500x500.jpg" />
<img src=" https://i1.sndcdn.com/artworks-000652828381-8tet2w-t500x500.jpg" >
<img src=" https://i1.sndcdn.com/artworks-L3b6Dwse4RJe-0-t500x500.jpg" >
<img src=" https://i1.sndcdn.com/artworks-ikxDwx60XoJJ-0-t500x500.jpg" >
<img src="https://i1.sndcdn.com/avatars-VqyRb4X8qf9C3UBF-rSJL8Q-t240x240.jpg" />
</div>
</div>
<h1> Astronomy Picture of the Day </h1>
<p>
<a href="archivepix.html">Discover the cosmos!</a>
Each day a different image or photograph of our fascinating universe is
featured, along with a brief explanation written by a professional astronomer.
<p>
2024 February 9
<br>
</center>
<center>
<b> When Roses Aren't Red</b> <br>
<b> Image Credit &
<a href="lib/about_apod.html#srapply">Copyright</a>: </b>
<a href="https://www.instagram.com/colorado_astro/">Tommy Lease</a>
(Denver Astronomical Society)
</center> <p>
<b> Explanation: </b>
Not all roses are red
<a href="https://en.wikipedia.org/wiki/Roses_Are_Red">of course</a>,
but they can still be very pretty.
Likewise, the beautiful
<a href="http://www.atlasoftheuniverse.com/nebulae/ngc2237.html">Rosette
Nebula</a> and other star forming regions are often shown in
astronomical images with a predominately red hue,
in part because the dominant emission in the nebula is
<a href="https://en.wikipedia.org/wiki/H-alpha">from hydrogen atoms</a>.
Hydrogen's strongest optical emission line, known as H-alpha,
is in the red region of the spectrum.
But the beauty of an emission nebula need not be appreciated
in red light alone.
Other atoms in the nebula are also excited by energetic
starlight and produce narrow emission lines as well.
<a href="https://www.astrobin.com/net448/">In this close-up view</a>
of the Rosette Nebula, narrowband images are mapped into broadband
colors to show emission from Sulfur atoms in red, Hydrogen in green, and
Oxygen in blue.
In fact, the
<a href="https://aaa.org/2020/06/23/pillars-of-creation-using-the-hubble-palette/">scheme of mapping</a>
these narrow atomic emission lines (SHO) into the broader colors (RGB) is
adopted in many
<a href="https://hubblesite.org/home">Hubble images</a>
of emission nebulae.
This image spans about 50 light-years across the center of the
<a href="http://www.messier.seds.org/xtra/ngc/n2244.html">Rosette Nebula</a>.
The nebula lies some 3,000
<a href="http://www.atlasoftheuniverse.com/5000lys.html">light-years away</a>
in the constellation Monoceros.
<hr/>
<a href="https://streetfighter.fandom.com/wiki/Street_Fighter_Alpha_3"><cite>ストリートファイターZERO 3</cite></a>
<figure>
Street Fighter Alpha 3, known as Street Fighter Zero 3 (ストリートファイターZERO 3 Sutorīto Faitā Zero 3?) in Japan and Asia, is a 1998 2D fighting game by Capcom originally released for the CPS II arcade hardware. It is the third game in the Street Fighter Alpha series, following Street Fighter Alpha: Warriors' Dreams and Street Fighter Alpha 2.
<a href="https://mars.nasa.gov/mars2020-raw-images/pub/ods/surface/sol/00001/ids/edr/browse/edl/EBF_0001_0667022756_679ECV_N0010052EDLC00001_0010LUJ01_1200.jpg"><img src="https://static.wikia.nocookie.net/streetfighter/images/7/79/Street_Fighter_Alpha_3_Arcade_Select_Screen.png" alt="StreetFighterAlpha3" /></a>
<figcaption>StreetFighterAlpha3</figcaption>
</figure>
<p>Street Fighter Alpha 3 is one of the arcade games by Capcom that underwent regional censorship. Like Alpha 2, it removed explicit references to Japanese culture in Southeast-Asian releases due to the prevailing anti-Nippon policies in Korea in its time of release. This meant E. Honda's stage was removed entirely and Sodom's stage was modified to have less Nipponese touches. These censorships were removed in home releases.
The game was initially ported in 1998 for the PlayStation. This version of the game had replaced the hit sprites with hit polygons in order to focus more memory on character animations. T. Hawk, Fei Long, and Dee Jay, the remaining "New Challengers" from Super Street Fighter II, who were not in the original arcade version, were added to the roster. Balrog, Juli, and Juni were also added to the immediate roster, after they were given new character portraits and their own storylines. Evil Ryu, Shin Akuma and Guile were also added as secret characters in the World Tour mode, a mode that allows players to customize their chosen character's fighting style. An additional feature in the Japanese version also made use of the PocketStation peripheral, which allows players to build up their character's strength in Pocket Zero (ポケゼロ PokeZero?) </p> <a href="https://streetfighter.fandom.com/wiki/Street_Fighter_Alpha_3"><cite>https://streetfighter.fandom.com/wiki/Street_Fighter_Alpha_3</cite></a>
<embed src="https://archive.org/embed/arcade_sfa3" />
<figure>
<a href="https://mars.nasa.gov/mars2020-raw-images/pub/ods/surface/sol/00001/ids/edr/browse/edl/EBF_0001_0667022756_679ECV_N0010052EDLC00001_0010LUJ01_1200.jpg"><img src="https://i.etsystatic.com/12076554/r/il/1e22a7/1340068212/il_1080xN.1340068212_7zsc.jpg" alt="StreetFighterAlpha3" /></a>
<figcaption>StreetFighterAlpha3</figcaption>
</figure>
<hr />
<a href="https://archive.org/download/reefer_madness1938" ><p>Files for reefer_madness1938</p></a>
<video controls poster="https://i.ebayimg.com/images/g/RswAAOSw6Ohh9F6W/s-l1600.jpg">
<source src="https://ia600908.us.archive.org/19/items/reefer_madness1938/reefer_madness1938_512kb.mp4" type="video/mp4" />
Download the
<a href="https://ia600908.us.archive.org/19/items/reefer_madness1938/reefer_madness1938_512kb.mp4">MP4</a>
video.
</video>
<article>
<h2> Astronomy Picture of the Day </h2>
<p>
<a href="archivepix.html">Discover the cosmos!</a>
Each day a different image or photograph of our fascinating universe is
featured, along with a brief explanation written by a professional astronomer.
<p>
2012 December 27
<br>
<a href="image/1212/rocknest_curiosity_11119.jpg">
<IMG SRC="https://apod.nasa.gov/apod/image/1212/rocknest_curiosity_960.jpg"
alt="See Explanation. Clicking on the picture will download
the highest resolution version available."></a>
<b> Curiosity Rover at Rocknest on Mars </b> <br>
<b> Image Credit: </b>
<a href="http://www.nasa.gov/">NASA</a>,
<a href="http://www.jpl.nasa.gov/">JPL-Caltech</a>,
<a href="http://www.msss.com/">MSSS</a>,
<a href=
"http://mars.jpl.nasa.gov/msl/mission/instruments/cameras/mahli/"
>MAHLI</a>
<p class="split">
<b> Explanation: </b>
What's in this smooth soil on Mars?
In late October, NASA's robotic
<a href="http://mars.jpl.nasa.gov/msl/mission/overview/"
>Curiosity rover</a> stopped near a place dubbed
<a href="http://en.wikipedia.org/wiki/Rocknest_(Mars)"
>Rocknest</a> as it continues to explore
<a href="http://en.wikipedia.org/wiki/Gale_(crater)">Gale Crater</a>
on Mars.
Rocknest is the group of stones seen near the top left of the
<a href="http://photojournal.jpl.nasa.gov/catalog/PIA16468">above image</a> -- just to the left of <a href=
"http://upload.wikimedia.org/wikipedia/commons/3/3f/Drawing-of-the-Mars-Science_Laboratory.png">Curiosity's mast</a>.
Of particular interest was the unusually smooth patch of soil named Wind Drift seen to the left of Curiosity, which was likely created by the
<a href="ap990112.html">Martian wind</a>
blowing fine particles into Rocknest's wake.
The <a href="http://photojournal.jpl.nasa.gov/catalog/PIA16468">above image</a> shows part of
<a href="ap120827.html">Mt. Sharp</a> in the background to upper right,
and, oddly, almost the entire rover itself, digitally reconstructed from 55 frames while digitally removing an extended arm.
<a href="http://photojournal.jpl.nasa.gov/figures/PIA16468_fig1.jpg"
>Curiosity scooped</a> several
<a href="http://photojournal.jpl.nasa.gov/figures/PIA16570_fig1.jpg"
>sand samples</a> from Wind Drift into its
<a href="http://en.wikipedia.org/wiki/CheMin">Chemistry and Mineralogy Experiment</a> (CheMin) and the
<a href="http://ssed.gsfc.nasa.gov/sam/">Sample Analysis at Mars</a> (SAM) laboratory for a detailed analysis.
<a href=
"http://www.nasa.gov/mission_pages/msl/news/msl20121203.html"
>Preliminary data</a> from the soil indicates a small amount of one-carbon <a href="http://en.wikipedia.org/wiki/Organic_matter"
>organic material</a> the origin of which it presently unknown.
Although the
<a href=
"http://www.planetary.org/blogs/emily-lakdawalla/2012/12031316-curiosity-kerfuffle.html"
>organic signal</a> might be just contaminants from Earth,
the exciting possibility that it could be from Mars itself will remain a focus of
<a href="http://kzsc.org/blog/wp-content/uploads/2011/02/Curious.jpg"
>future exploration</a> and research.
<p>
<b> Best of APOD 2012: </b>
<a href="http://asterisk.apod.com/viewtopic.php?f=28&t=30409"
>Download a free 2013 APOD Calendar</a> <br>
</article>
<object data="https://murray-lab.caltech.edu/CTX/V01/SceneView/MurrayLabCTXmosaic.html" >
</object>
<p>Arkeisha Antoinette Knight, known professionally as Kash Doll, is an American rapper and actress from Detroit, Michigan. Signed to Republic Records, she is best known for her singles "For Everybody" (2017) and "Ice Me Out" (2018), the latter of which became the lead single from her debut album Stacked (2019). Kash Doll has collaborated with artists including Meek Mill, Big Sean, Iggy Azalea, DreamDoll and K. Michelle.[1]
<embed scrolling="no" frameborder="no" allow="autoplay" src="https://w.soundcloud.com/player/?url=https%3A//api.soundcloud.com/tracks/411406869&color=%23595959&auto_play=false&hide_related=false&show_comments=true&show_user=true&show_reposts=false&show_teaser=true&visual=true" />
<figcaption>Kashdoll is a moniker that gets passed around in real work sex work... slavery.
I really miss her, she mentions me by name in the first song "soundcloud context"</figcaption>
</p>
<p class="editable">: This is the first line.
See, how the text fits here, also if there is a linebreak at the end? It works nicely.
Great.
</p>
<div class="editable" >: This is the first line.<br>
See, how the text fits here, also if there is a linebreak at the end?<br>
It works nicely.<br>
<br>
Great.
</div>
<video controls >
<source src="https://science.nasa.gov/wp-content/uploads/2024/03/20230217FrontLeftHazcamTwoYearMovie-1280.mp4" type="video/mp4" />
Download the
<a href="https://science.nasa.gov/wp-content/uploads/2024/03/20230217FrontLeftHazcamTwoYearMovie-1280.mp4">MP4</a>
video.
</video>
<embed scrolling="no" frameborder="no" allow="autoplay" src="https://w.soundcloud.com/player/?url=https%3A//api.soundcloud.com/playlists/1148981710&color=%23ff5500&auto_play=false&hide_related=false&show_comments=true&show_user=true&show_reposts=false&show_teaser=true&visual=true" />
<h2> Astronomy Picture of the Day </h2>
<p>
2023 June 27
<br>
<a href="https://apod.nasa.gov/apod/image/2306/MavenMars2panel.png">
<IMG SRC="https://apod.nasa.gov/apod/image/2306/MavenMars2panel.png"
alt="See Explanation. Clicking on the picture will download
the highest resolution version available." style="max-width:100%"></a>
<b> MAVEN's Ultraviolet Mars </b> <br>
<b> Image Credit: </b>
<a href="http://www.nasa.gov/mission_pages/maven/team/index.html">MAVEN</a>,
<a href="http://lasp.colorado.edu/home/maven/">Laboratory for Atmospheric and Space Physics, Univ. Colorado</a>,
<a href="http://www.nasa.gov/">NASA</a>
<p>
<b> Explanation: </b>
<a href="https://www.nasa.gov/feature/goddard/2023/nasa-s-maven-spacecraft-stuns-with-ultraviolet-views-of-red-planet">These two global views of Mars</a>
were captured at ultraviolet wavelengths,
<a href="https://science.nasa.gov/ems/01_intro">beyond the spectrum</a>
visible to human eyes.
Recorded by the
<a href="https://www.nasa.gov/mission_pages/maven/main/index.html">MAVEN spacecraft's</a>
Imaging Ultraviolet Spectrograph
instrument in July 2022 (left) and January 2023,
three otherwise invisible ultraviolet bands are mapped into
red, green, and blue colors.
That color scheme presents the
<a href="https://solarsystem.nasa.gov/planets/mars/in-depth/">Red Planet's surface</a>
features in shades of tan and green.
Haze and clouds appear white or blue, while high altitude ozone takes
on a dramatic purple hue.
On the left, Mars' south polar ice cap is in brilliant white
at the bottom but shrinking during
the southern hemisphere's
<a href="https://www.planetary.org/articles/mars-calendar">summer season</a>.
On the right, the northern hemisphere's polar region is seen
shrouded in clouds and atmospheric ozone.
Known to some as the Mars Atmosphere and Volatile EvolutioN spacecraft,
MAVEN has been exploring Mars' tenuous upper atmosphere,
ionosphere, and its interactions with the Sun and solar wind
<a href="ap140926.html">since 2014</a>.
<p>
<hr />
<h2 class="neon"> Lorem ipsum </h2>
<figure>
<p>
<a href="https://mars.nasa.gov/mars2020-raw-images/pub/ods/surface/sol/00001/ids/edr/browse/edl/EBF_0001_0667022756_679ECV_N0010052EDLC00001_0010LUJ01_1200.jpg"><img src="https://mars.nasa.gov/mars2020-raw-images/pub/ods/surface/sol/00001/ids/edr/browse/edl/EBF_0001_0667022756_679ECV_N0010052EDLC00001_0010LUJ01_1200.jpg" alt="The ENIAC" /></a>
<figcaption>Scale model of the
Eiffel tower in
Parc Mini-France</figcaption>
</figure>
<p>The contract was signed on...</p>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nam eu sem tempor, varius quam at, luctus dui. Mauris magna metus, dapibus nec turpis vel, semper malesuada ante. Vestibulum id metus ac nisl bibendum scelerisque non non purus. Suspendisse varius nibh non aliquet sagittis. In tincidunt orci sit amet elementum vestibulum. Vivamus fermentum in arcu in aliquam. Quisque aliquam porta odio in fringilla. Vivamus nisl leo, blandit at bibendum eu, tristique eget risus. Integer aliquet quam ut elit suscipit, id interdum neque porttitor. Integer faucibus ligula.</p>
<p>Quis quam ut magna consequat faucibus. Pellentesque eget nisi a mi suscipit tincidunt. Ut tempus dictum risus. Pellentesque viverra sagittis quam at mattis. Suspendisse potenti. Aliquam sit amet gravida nibh, facilisis gravida odio. Phasellus auctor velit at lacus blandit, commodo iaculis justo viverra. Etiam vitae est arcu. Mauris vel congue dolor. Aliquam eget mi mi. Fusce quam tortor, commodo ac dui quis, bibendum viverra erat. Maecenas mattis lectus enim, quis tincidunt dui molestie euismod. Curabitur et diam tristique, accumsan nunc eu, hendrerit tellus.</p><p class="neon"> ፤ እግዚአብሔርም ብርሃኑን ቀን ብሎ ጠራው፥።</p>
<img src="https://raw.githubusercontent.com/ricoThaka/ricothaka.github.io/master/assets/images/BoardingPass_MyNameOnFutureMission.png" alt="The ENIAC" />
<img src="https://science.nasa.gov/wp-content/uploads/2023/07/52046519794-082f96a17d-o.jpg" alt="Galaxy NGC 4535" />
<img src="https://photojournal.jpl.nasa.gov/jpeg/PIA26202.jpg" alt="The ENIAC" />
<img src="https://photojournal.jpl.nasa.gov/jpeg/PIA26207.jpg" alt="The ENIAC" />
<!-- Heading to link to -->
<h2 id="Section_further_down">This Css </h2>
<pre>
html {
font: normal 10px/18px "Lucida Grande", "Lucida Sans Unicode", verdana, lucida, sans-serif;
background: url(https://science.nasa.gov/wp-content/uploads/2023/09/PIA14943-full.jpg) -237px 30px no-repeat fixed;
background-position: 0 0;
line-height: 1.5;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
color:white;
}
a,
a:hover,
a:visited a:hover {
color: #c9ff23;
padding: 10px;
}
a {
color: #63c0f5;
text-shadow: 0 0 5px rgba(104, 182, 255, 0.5);
}
/* contentDiv */
.logo {
writing-mode: vertical-rl;
float: top;
background-color:black;
display:inline;
}
#navcontainer
{
height:100vh;
margin: 0px 0 0 0px;
padding: 0;
display: table;
background-color:black;
position:fixed;
color:white;
}
#navcontainer ul
{
writing-mode: vertical-rl;
text-orientation: upright;
border: 0;
margin: 0;
padding: 0;
list-style-type: none;
text-align: center;
}
#navcontainer ul li
{
display: block;
float: left;
text-align: center;
padding: 0;
margin: 0;
}
#navcontainer ul li a
{
background: #fff;
border-top: 1px solid #2E97F2;
border-left: px solid #f5d7b4;
border-bottom: 1px solid #262626;
border-right: 1px solid #262626;
padding: 0;
margin: 0 0 0px 0;
color: #A6A6A6;
text-decoration: none;
display: block;
text-align: center;
}
#navcontainer ul li a:hover
{
color: #F2F2F2;
background: #262626;
}
#navcontainer a:active
{
background: #262626;
color: #fff;
}
#navcontainer li#active a
{
background: #262626;
border-right: 4px solid #2E97F2;
color: #fff;
}
.top-container {
padding: 0px;
align-content: center;
max-width: 900px;
padding: 15px;
margin-right: auto;
margin-left: auto;
/* opera does not like 'margin:20px auto' */
/* background: #666; */
width: 50%; /* ie5win fudge begins */
text-align:left;
}
hr {
height: 0;
border: 0;
border-bottom: 1px dashed #595959;
color: #595959;
}
embed {
height: 400px;
width: 100%;
scrollbar-color: #595959 #262626;
scrollbar-width: thin;
}
object {
height: 300px;
width: 100%;
}
h1, h2, h3 {
text-shadow: 5px 5px 5px #262626;
}
h1 { font-family: Tahoma, Verdana, Segoe, sans-serif; font-size: 24px; font-style: normal; font-variant: normal; font-weight: 700; line-height: 26.4px; } h2 { font-family: Tahoma, Verdana, Segoe, sans-serif; font-size: 14px; font-style: normal; font-variant: normal; font-weight: 700; line-height: 15.4px; }
.split {
columns: 2;
}
#content {
border-radius: 31px 31px 31px 31px;
width: 70vw;
scrollbar-color: #595959 #262626;
scrollbar-width: thin;
padding: 20px;
height: 70vh;
overflow-y: auto;
margin-bottom: 40px;
margin-right: auto;
margin-left: auto;
border: 19px solid #262626;
text-align:left;
voice-family:inherit;
box-shadow: rgba(38,38,38, 0.4) 5px 5px, rgba(38,38,38, 0.3) 10px 10px, rgba(38,38,38, 0.2) 15px 15px, rgba(38,38,38, 0.1) 20px 20px, rgba(38,38,38, 0.05) 25px 25px;
background: url(https://raw.githubusercontent.com/ricoThaka/ricothaka.github.io/master/saturn.png ) -237px 30px no-repeat fixed;
background-position: 0 0;
line-height: 1.5;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
}
img { width: 100%;
max-width:100%;
}
video {
height: 30vh;
width: 100%;
display: block;
margin-block: 10px 10px;
background: url(https://raw.githubusercontent.com/ricoThaka/ricothaka.github.io/master/assets/images/MOSHED-2024-4-24-15-54-32.jpg) no-repeat fixed;
transition: 4s cubic-bezier(.25,.1,.2,3);
}
figcaption {
font: normal 10px/18px "Lucida Grande", "Lucida Sans Unicode", verdana, lucida, sans-serif;
}
figure {
min-width: 150px;
}
figure {
vertical-align: top;
float: right;
width: 40%;
text-indent: 0;
border-bottom: thin silver solid;
padding: 1px;
margin: 10px;
}
.dosbox-container { width: 100%; height: 400px; }
.dosbox-container > .dosbox-overlay { background: url(https://i.ebayimg.com/images/g/OTgAAOSwYINj50PW/s-l1200.webp); }
.twoPanelSpread {
/* For browsers that do not support gradients */
/* background-image: linear-gradient(to right, #e66250, #ff80cc); */
margin: 0px;
padding: 0px;
background: url( https://raw.githubusercontent.com/ThakaRashard/bubblegumpop/gh-pages/img/810MATRiX.webp )
center repeat;
}
.row {
display: flex;
flex-direction: row;
flex-wrap: wrap;
width: 100%;
}
#headerMargins
{
margin-bottom:-27px;
}
.panelColumn {
display: flex;
flex-direction: column;
flex-basis: 100%;
flex: 1;
overflow: hidden;
}
.leftColumn {
/* background-color: #2470FF; */
width: 100%;
}
.leftColumn img {
flex-shrink: 0;
min-width: 100%;
min-height: 100%;
display: flex;
justify-content: center;
align-items: center;
overflow: hidden
}
.rightColumn {
}
.rightColumn img {
flex-shrink: 0;
min-width: 100%;
min-height: 100%;
display: flex;
justify-content: center;
align-items: center;
overflow: hidden
}
/* FLEX_BOX_FOR_3_IMAGES */
.flex-container {
display: flex;
align-items: stretch;
flex-flow: row nowrap;
flex-direction: row;
flex-wrap: nowrap;
justify-content: center;
align-content: stretch;
height: 100%;
padding: 15px;
gap: 5px;
}
.flex-container > div{
border: 1px solid #c9ff23;
border-radius: 1px;
padding: 8px;
}
#row_image {
/* position: fixed; */ /* border-radius: 55px 55px 0px 0px; */
width: 100%;
display: flex;
border-bottom: 10px solid #DB362D;
justify-content: center;
max-width: 100%;
padding: 0px;
max-height: 100%;
background-image: url("https://raw.githubusercontent.com/ThakaRashard/bubblegumpop/gh-pages/img/810MATRiX.webp");
background: url( https://raw.githubusercontent.com/ThakaRashard/bubblegumpop/gh-pages/img/810MATRiX.webp )
center repeat;
background-repeat: repeat;
}
#round {border-radius: 31px 31px 0px 0px;}
img {
}
.sticky {
position: fixed;
top: 0;
width: 100%;
border-bottom: 10px solid #DB362D;
}
.sticky + .content {
padding-top: 102px;
}
.firstcharacter {
color: #fff;
text-shadow: 0 0 7px #fff, 0 0 10px #fff, 0 0 21px #fff, 0 0 42px #0fa,
0 0 82px #0fa, 0 0 92px #0fa, 0 0 102px #0fa, 0 0 151px #0fa;
float: left;
font-size: 75px;
line-height: 60px;
padding-top: 7px;
padding-right: 8px;
padding-left: 3px;
}
.neonText {
color: #fff;
text-shadow: 0 0 7px #fff, 0 0 10px #fff, 0 0 21px #fff, 0 0 42px #0fa,
0 0 82px #0fa, 0 0 92px #0fa, 0 0 102px #0fa, 0 0 151px #0fa;
}
gradient-text {
box-shadow: rgba(219,54,45, 0.4) 5px 5px, rgba(219,54,45, 0.3) 10px 10px, rgba(219,54,45, 0.2) 15px 15px, rgba(219,54,45, 0.1) 20px 20px, rgba(219,54,45, 0.05) 25px 25px;
}
svg {
filter: drop-shadow(11px 1px 1px rgb(38 38 38 / 0.6));
}
.header {
position: fixed;
left: 0;
top: 0;
bottom: 0;
width: 1117.5em;
background: #DB362D;
}
.social-links {
border-bottom: solid 1px #DB362D;
margin-bottom: 15px;
}
.social-links li {
width: 25%;
border-left: solid 1px #DB362D;
}
.social-links li:first-child {
border: none;
}
.social-links a {
display: block;
height: 5.5em;
text-align: center;
color: white;
font: 0.75em/5.5em "Comfortaa", -apple-system, Ubuntu, "Ariel Black", Verdana;
}
.social-links a:hover {
color: #DB362D;
}
.list-hover-slide li {
position: relative;
overflow: hidden;
}
.list-hover-slide a {
display: block;
position: relative;
z-index: 1;
background-repeat: no-repeat, repeat;
background-size: cover;
background-image: url("https://mars.nasa.gov/mars2020-raw-images/pub/ods/surface/sol/00443/ids/edr/browse/fcam/FLF_0443_0706278634_263ECM_N0250214FHAZ02008_10_085J01_1200.jpg");
transition: 0.35s ease color;
}
.list-hover-slide a:before {
content: '';
display: block;
z-index: -1;
position: absolute;
left: -100%;
top: 0;
width: 100%;
height: 100%;
border-right: solid 5px #c9ff23;
background: #DB360D;
transition: 0.35s ease left;
}
.list-hover-slide a.is-current:before, .list-hover-slide a:hover:before {
left: 0;
}
.pinupGallery {
display:block;
width: 100%;
margin: 0 auto;
display: flex;
flex-wrap: wrap;
gap: 0px;
object-fit: contain;
}
.pinupImage {
width: 50px;
flex: 1 0 auto;
}
.featured-pinupImage {
flex: 0 1 50%;
}
:root {
--magnifier: 8;
--gap: 0vmax;
--transition: 0.5s;
}
.expandingGallery {
width: 100vw;
height: 30vh;
margin:0px;
padding: 0px;
display: flex;
align-items: center;
justify-content: center;
gap: var(--gap);
}
.expandingGallery > img {
--brightness: 0.75;
--grayscale: 1;
transition: flex var(--transition), filter var(--transition);
height: 100%;
object-fit: cover;
overflow: hidden;
flex: 1;
}
.expandingGallery > img:hover {
flex: var(--magnifier);
}
.lovergraff {
/*display: grid;
grid-gap: 5px;
grid-template-columns: 1fr 1fr 1fr 1fr 1fr; */
display: flex;
flex-wrap: nowrap;
width: 100%;
height: 80px;
}
.lovergraff div:nth-child(1) { background: #BF6B99;}
.lovergraff div:nth-child(2) { background: #049DD9;}
.lovergraff div:nth-child(3) { background: #D4D943;}
.lovergraff div:nth-child(4) { background: #BF9969;}
.lovergraff div:nth-child(5) { background: #D94848;}
.lovergraff div {
flex: 0 1 200px;
flex: 1 1 200px;
padding: 0px;
}
</pre>
<div style="padding:20px;" ><p><a href="css/01_centered_box.css">[full css]</a></p></div>
</div>
<script type="text/javascript" src="/js/lightbox.js"></script>
<link rel="stylesheet" href="/css/lightbox.css">
</body>
</html>