-
Notifications
You must be signed in to change notification settings - Fork 3
/
index221.html
5631 lines (4600 loc) · 390 KB
/
index221.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
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="Cache-Control" content="max-age=604800, must-revalidate">
<meta http-equiv="Expires" content="604800">
<title>Yacht Dice</title>
<style>
body {
text-align: center;
background-color: rgba(126, 36, 36, 1);
/* Dark background color */
color: #ffffff;
/* Light text color */
margin: 0;
padding: 0;
overflow-y: auto;
transition: background-image 2s ease;
background-image: url('Images/PatternStill.svg');
background-repeat: repeat;
background-size: auto; /* or cover/contain as needed */
font-family: Arial, sans-serif;
}
.container {
display: none;
height: 100vh;
overflow-y: auto;
/* Enable vertical scrolling if content exceeds container height */
}
.left {
flex: 1;
background-color: rgba(0, 0, 0, 0.15);
/* background-color: #5a1a1a; */
/* background-color: #5a1a1a; */
/* Darker background color */
/* padding-right: 20px; */
}
.right {
flex: 1;
background-color: rgba(0, 0, 0, 0.25); /* Use a flexbox layout */
display: flex;
/* flex-direction: row; */
/* align-items: center; */
padding: auto;
}
@media (min-width: 800px) and (min-height: 650px) {
.right {
display: flex;
align-items: center;
}
}
table {
border-collapse: collapse;
width: 100%;
color: #ffffff;
}
th,
td {
border: 1px solid #555555;
text-align: left;
padding: 3px;
padding-left: 8px;
}
th {
background-color: #333333;
}
button {
padding: 2px 10px;
cursor: pointer;
}
/* Your existing styles */
.dice-container {
display: flex;
flex-wrap: wrap;
justify-content: center;
align-items: center;
}
.dice {
margin: 5px;
padding: 5px;
display: flex;
justify-content: center;
align-items: center;
text-align: center;
background-color: transparent;
/* Dark background color for dice */
}
/* Jump animation */
@keyframes jump {
0% {
transform: translateY(0);
}
25% {
transform: translateY(-20px);
}
50% {
transform: translateY(0px);
}
75% {
transform: translateY(-10px);
}
100% {
transform: translateY(0);
}
}
.jump {
animation-name: jump;
animation-duration: 0.7s;
animation-fill-mode: forwards;
}
.keep-checkbox {
display: block;
margin-top: 10px;
margin-left: auto;
margin-right: auto;
}
.info-and-settings-container {
text-align: center;
margin-top: 20px;
margin: 5px;
}
.settings-label {
display: block;
margin-top: 10px;
text-align: center;
}
input[type="number"] {
width: 50px;
padding: 5px;
margin: 0 5px;
border: none;
border-radius: 5px;
background-color: #333333;
/* Dark background color for input fields */
color: #ffffff;
/* Light text color for input fields */
text-align: center;
}
input[type="number"]::-webkit-inner-spin-button {
-webkit-appearance: none;
/* Remove spin button */
appearance: none;
text-align: center;
}
input[type="number"]::-webkit-outer-spin-button {
-webkit-appearance: none;
/* Remove spin button */
appearance: none;
text-align: center;
}
.login-body {
text-align: center;
background-color: #121212;
/* Dark background color */
color: #ffffff;
/* Light text color */
}
.login-container {
display: none;
justify-content: center;
align-items: center;
height: 100vh;
}
.offlineoptions-container {
display: none;
justify-content: center;
align-items: center;
height: 100vh;
}
.login-form {
background-color: #1f1f1f;
border-radius: 5px;
padding: 20px;
width: 300px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
display: flex;
flex-direction: column;
align-items: center;
/* Center horizontally */
}
.login-heading {
margin-bottom: 20px;
color: #ffffff;
font-size: 30px;
}
.login-solo-options {
background-color: rgba(0, 0, 0, 0.35);
padding: 20px;
}
.login-label {
display: block;
color: #ffffff;
margin-bottom: 5px;
}
.login-input {
width: 100%;
padding: 10px;
margin-bottom: 10px;
border: 1px solid #ccc;
border-radius: 4px;
box-sizing: border-box;
background-color: #333333;
color: #ffffff;
}
.login-submit {
width: 100%;
background-color: #4caf50;
color: white;
padding: 10px 0;
border: none;
border-radius: 4px;
cursor: pointer;
margin-top: 10px;
}
.login-submit:hover {
background-color: #45a049;
}
.login-description {
margin: 1px;
/* Adjust the margin as needed */
color: #ffffff;
}
.small-text {
font-size: 12px;
/* Adjust the size as needed */
}
.smaller-text {
font-size: 10px;
/* Adjust the size as needed */
}
.button-and-text {
display: flex;
align-items: center;
}
.music-button {
font-family: 'Arial', sans-serif;
/* Change font family as needed */
font-size: 24px;
/* Adjust font size as needed */
padding: 10px 20px;
/* Adjust padding as needed */
border: none;
border-radius: 5px;
/* Adjust border radius as needed */
background-color: #3498db;
/* Change background color as needed */
color: #fff;
/* Change text color as needed */
cursor: pointer;
margin-left: 10px;
margin-right: 10px;
}
.music-button:hover {
background-color: #2980b9;
/* Change hover background color as needed */
}
.tutoroll_page {
justify-content: center;
align-items: center;
min-height: 100vh; /* Minimum height to cover the viewport */
display: flex;
margin: 0;
overflow: auto; /* Ensure it can scroll if content overflows */
}
.error-message {
min-height: 100vh; /* Minimum height to cover the viewport */
display: none;
font-size: 20px;
justify-content: center; /* Centers horizontally */
align-items: center; /* Centers vertically */
text-align: center; /* Optional: centers the text itself */
flex-direction: column;
}
.tutoroll_container {
align-items: center;
max-width: 600px;
padding: 20px;
padding-top: 10px;
/* background-color: rgba(50, 50, 50, 0.7); */
border-radius: 100px;
/* box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); */
font-family: Arial, sans-serif;
color: #eee;
text-align: left;
}
.tutoroll_header {
text-align: center;
color: #189735;
margin-bottom: 20px;
font-family: 'Montserrat', sans-serif;
text-shadow: 0 0 10px #000000; /* Black outline with 2px blur */
}
.tutoroll_section {
margin-bottom: 20px;
padding: 10px;
border-radius: 5px;
}
.tutoroll_note_full h3,
.tutoroll_note h3,
.tutoroll_tip h3 {
color: #28a745;
margin-top: 0;
margin-bottom: 5px;
margin-top: 0;
margin-bottom: 10px;
font-size: 14px;
}
.tutoroll_note,
.tutoroll_note_full,
.tutoroll_tip {
background-color: rgba(0, 0, 0, 0.3);
color: #777;
display: inline-block;
vertical-align: top;
border-radius: 10px;
margin: 2%;
padding: 2%;
font-size: 14px;
}
.tutoroll_note {
width: 40%;
}
.tutoroll_note_full {
width: 90%;
}
.tutoroll_tip {
width: 40%;
margin: calc(2% - 2px);
border: 2px solid #ffc107;
/* Pretty yellow thickish border */
}
.tutocenter {
margin-left: auto;
margin-right: auto;
text-align: center;
}
.small-text {
font-size: 11px;
/* Adjust the size as needed */
margin-left: auto;
margin-right: auto;
text-align: center;
position: relative;
/* Position the text absolutely */
bottom: 0;
/* Align text to the bottom */
width: 100%;
/* Make text take full width of container */
text-align: center;
/* Center the text horizontally */
}
.tutoroll_list {
padding-left: 20px;
/* Adjust the indentation */
margin-top: 0px;
margin-bottom: 0px;
}
@media screen and (max-width: 565px) {
.small-text {
font-size: 10px; /* Change this value to the desired smaller font size */
}
.tutoroll_list {
font-size: 12px; /* Change this value to the desired smaller font size */
}
.tutoroll_note {
font-size: 12px; /* Change this value to the desired smaller font size */
}
.tutoroll_tip {
font-size: 12px; /* Change this value to the desired smaller font size */
}
.login-description {
font-size: 12px; /* Change this value to the desired smaller font size */
}
}
@media screen and (max-width: 413px) {
.small-text {
font-size: 8px; /* Change this value to the desired smaller font size */
}
.login-description {
font-size: 0px; /* Change this value to the desired smaller font size */
}
}
.roll-button {
background-color: #ffc107;
/* Pretty yellow */
color: #333;
/* Dark text color */
border: none;
/* No border */
padding: 5px 10px;
/* Increased padding for larger button */
font-size: 30px;
/* Increased font size */
font-weight: bold;
/* Bold text */
border-radius: 10px;
/* Rounded corners */
cursor: pointer;
/* Cursor style */
margin-bottom: 10px;
margin-left: auto;
margin-right: auto;
transition: background-color 0.3s, color 0.3s;
/* Smooth transition for color change */
position: relative;
}
.roll-button:hover {
background-color: #ffdc34;
/* Lighter yellow on hover */
color: #222;
/* Darker text color on hover */
}
/* Container style for the image previews */
.image-container {
display: flex;
align-items: center;
gap: 1px;
}
/* Image style for the previews */
.preview-image {
width: 30px;
height: 30px;
}
/* Custom dropdown style */
.custom-dropdown {
align-items: center;
position: relative;
display: flex;
cursor: pointer;
/* border: 1px solid #ccc; */
/* border-radius: 5px; */
/* background-color: #fff; */
width: 210px;
/* Adjust width as needed */
/* line-height: 1; */
/* Ensure single line height */
/* Center horizontally */
margin-top: 5px;
}
/* Dropdown options style */
.dropdown-options {
display: none;
position: absolute;
top: 100%;
left: 0;
z-index: 1;
width: 100%;
/* Adjust width to match dropdown button */
max-height: 200px;
/* Add max-height for scroll if needed */
overflow-y: auto;
/* Enable vertical scrolling if options exceed height */
border: 1px solid #ccc;
background-color: #fff;
padding: 5px;
border-radius: 5px;
}
/* Style for each skin option within dropdown */
.skin-option {
padding: 5px;
cursor: pointer;
}
/* Hover effect for skin options */
.skin-option:hover {
background-color: #f0f0f0;
/* Change background color on hover */
}
/* Dropdown label style */
.dropdown-label {
font-weight: bold;
color: black;
margin-right: 5px;
/* Add right margin for spacing */
line-height: 1;
/* Ensure single line height */
}
#boatImage {
position: fixed;
bottom: 0px;
/* Adjust the starting position from the bottom */
left: 105%;
/* Initially positioned outside the viewport on the right */
height: 100vh;
/* Set the height to 100% of the viewport height */
width: auto;
max-width: 100%;
/* Set maximum width to 100% of the viewport width */
max-height: 100%;
/* Allow height to adjust proportionally */
transition: left 10s linear;
/* Transition for smooth horizontal movement */
animation: wobble 4s ease infinite alternate;
/* Wobble animation */
object-fit: contain; /* Maintain aspect ratio */
}
/* CSS keyframe animation for wobbling effect */
@keyframes wobble {
0% {
transform: rotate(0deg);
}
25% {
transform: rotate(-5deg);
}
50% {
transform: rotate(5deg);
}
75% {
transform: rotate(-3deg);
}
100% {
transform: rotate(0deg);
}
}
#log {
width: 90%;
height: 150px;
resize: vertical;
border: 1px solid #ccc;
padding: 5px;
background-color: rgba(70, 70, 70, 0.5);
color: #fff;
border-color: #666;
overflow-y: scroll; /* Add scrollbar when content exceeds height */
text-align: left;
font-family: Arial, sans-serif;
word-break: break-word;
margin: auto;
}
.NS_table-container {
/* background-color: #732; */
border-radius: 10px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
overflow: hidden;
padding: 20px;
}
.NS_boxes {
display: flex;
flex-wrap: wrap;
gap: 8px;
justify-content: center;
text-align: center;
}
.NS_category-box {
display: flex;
justify-content: space-between;
align-items: center;
background-color: rgba(0, 0, 0, 0.25);
border-radius: 5px;
padding: 0px 10px;
flex: 1 1 calc(50% - 20px);
box-sizing: border-box;
transition: background-color 0.2s;
margin: 0px 0;
text-align: center;
min-height: 10px;
font-size: 2vh; /* Adjust the value as needed */
}
.NS_category-button:disabled {
background-color: #616161;
color: #cacaca;
cursor: not-allowed;
}
.NS_category-label {
font-weight: bold;
text-align: left;
}
.NS_mult-label {
font-weight: bold;
text-align: center;
background-color: #227722;
border: none;
border-radius: 5px;
padding: 1px 1px;
margin: 2px 0px;
}
.NS_category-button {
background-color: #007bff;
color: #fff;
border: none;
border-radius: 5px;
padding: 0.2vh 10px;
margin: 2px 0px;
cursor: pointer;
transition: background-color 2s;
font-size: 2vh; /* Adjust the value as needed */
}
.NS_category-button-2 {
background-color: #007bff;
color: #fff;
border: none;
border-radius: 5px;
padding: 0.2vh 10px;
margin: 2px 0px;
cursor: pointer;
/* transition: background-color 1s; */
font-size: 3vh; /* Adjust the value as needed */
}
@media (max-width: 600px) {
.NS_category-box {
flex: 1 1 100%;
}
}
.CAT_settings {
border: 2px solid gray;
padding: 10px;
width: 40vw;
max-width: 600px;
min-width: 290px;
max-height: 90vh;
background: rgba(100, 100, 100, 0.9);
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
border-radius: 8px;
overflow-y: auto;
}
.CAT_close-btn {
position: absolute;
top: 5px;
right: 10px;
cursor: pointer;
font-size: 50px;
background: none;
border: none;
color: white;
}
.CAT_header {
text-align: center;
margin-top: 0;
font-family: Arial, sans-serif;
color: white;
}
.CAT_expl-row {
display: flex;
justify-content: space-between;
margin: 5px 0;
font-family: Arial, sans-serif;
color: white;
padding-bottom: 5px;
border-bottom: 1px dotted white;
}
.CAT_expl-label {
width: 35%;
text-align: right;
padding-right: 5px;
}
.CAT_expl-value {
width: 60%;
text-align: left;
padding-left: 5px;
}
.header-and-button {
display: flex;
justify-content: space-around;
align-items: center;
text-align: center;
}
#optionsselector {
display: flex;
flex-direction: column;
align-items: center;
}
.achievement-page {
margin: 20px;
}
.achievement-page h2 {
margin-bottom: 10px;
}
.achievement-page ul {
list-style-type: none;
padding: 0;
}
.achievement-page ul li {
background-color: #9a9a9a;
margin-bottom: 5px;
padding: 10px;
border: 1px solid #ddd;
display: flex;
align-items: center;
color: #fff;
}
.achievement-page ul li.not-achieved {
background-color: #7a7a7a;
color: #ccc;
}
.achievement-page ul li img {
width: 40px;
height: 40px;
object-fit: contain;
margin-right: 10px;
}
.achievement-page ul li img.portrait {
object-fit: contain;
}
.achievement-page ul li.not-achieved img {
filter: grayscale(100%); /* Apply the grayscale filter */
}
.achievement-display {
position: fixed;
bottom: 20px;
right: 20px;
background-color: #4caf50;
color: white;
padding: 15px;
border-radius: 5px;
display: flex;
align-items: center;
animation: pop-up 7s forwards;
}
.achievement-display img {
width: 40px;
height: 40px;
margin-right: 10px;
}
@keyframes pop-up {
0% {
transform: translateY(100px);
opacity: 0;
}
10% {
transform: translateY(0);
opacity: 1;
}
70% {
transform: translateY(0);
opacity: 1;
}
100% {
transform: translateY(100px);
opacity: 0;
}
}
@keyframes pulsate {
0% {
background-color: #4b7bc2;
}
50% {
background-color: #be0f38;
}
100% {
background-color: #4b7bc2;
}
}
.pulsating {
animation: pulsate 2s infinite;
}
.roll-button .tooltip {
visibility: visible;
width: 150px; /* Adjust width as needed */
background-color: rgba(0, 0, 0, 0.25);
color: #fff;
text-align: center;
border-radius: 6px;
padding: 5px;
position: absolute;
z-index: 1;
bottom: 150%; /* Position above the button */
left: 50%;
transform: translateX(-50%);
font-size: 16px; /* Adjust font size here */
bottom: 100%; /* Position above the button */
margin-bottom: 5px; /* Adjust as needed to touch the button */
}
.tooltip::after {
content: '';
position: absolute;
top: 100%;
left: 50%;
margin-left: -5px;
border-width: 5px;
border-style: solid;
border-color: rgba(0, 0, 0, 0.25) transparent transparent transparent;
}
</style>
</head>
<body>
<div class="tutoroll_page" id="tutorollpage">
<div class="tutoroll_container">
<div class="header-and-button">
<!-- <h1 class="tutoroll_header">Yacht Dice</h1> -->
<img src="Images/LogoSuperStill.svg" alt="Logo" style="max-height: 300px;">
</div>
<div class="tutoroll_note">
<h3>Tutoroll</h3>
<ul class="tutoroll_list">
<li>Roll: Press roll or R key.</li>
<li>Lock: Click dice or press number keys.</li>
<li>You can roll multiple times.</li>
<li>Select categories to score.</li>
<li>Press reset (or delete key) and try again.</li>
</ul>
</div>
<div class="tutoroll_tip">
<h3>Latest features</h3>
<ul class="tutoroll_list">
<li>New difficulties</li>
<li>Many new AP options</li>
</ul>
</div>
<br><br>
<div class="tutocenter">
<button id="letsrollsolo" class="roll-button" style="display:none">Solo play</button>
<button id="letsroll" class="roll-button" style="background-color: #3667B1; color: #ffffff">Archipelago
</button>
<button id="playButton" class="roll-button" onclick="playPause()" style="background-color: #40B778; color: white;">
♫
</button>
<br><br>
</div>
<div class="small-text">
Yacht Dice is made by Spineraks. This site/game is based on Yacht Dice, a public domain dice game. <br>
All assets are custom made or free to use non-commercially. Huge thanks to SporyTike and Miawoo for the skins!
Steamboat Willie is public domain. Soundeffect by elevenlabs.io. Hanafuda styles by Sheldon Chen, non-financial profit. <br>
<span>Link to Archipelago: <a href="https://archipelago.gg" target="_blank"
style="text-decoration: underline; color: inherit;">archipelago.gg</a>.</span> <br>
Archipelago assets © 2022 by Krista Corkos and Christopher Wilson are licensed under Attribution-NonCommercial 4.0 International. To view a copy of this license, visit http://creativecommons.org/licenses/by-nc/4.0/
</div>
</div>
</div>
<script>
</script>
<script>
document.getElementById('letsroll').addEventListener('click', function () {
document.getElementById("tutorollpage").style.display = "none";
document.getElementById("login-container").style.display = "flex";
});
</script>
<div class="error-message" id="error-message-container">
A new apworld has released and I've cleaned up the website.<br>
Please move to this version to play your older version: <br>
<a href="client1.0.html" id="link-in-error-message" style="text-decoration: underline; color: inherit;">Link</a>
<br>
Your settings, such as sound and dice skin, may not carry over to this version, but everything else is the same. <br>
I'm not planning to do this again :3 <br> <br>
<img style="max-width: 10%; max-height: 10%;" src="Images/yachty.png" alt="Boat Image">
</div>
<!-- Login screen -->
<div class="login-container" id="login-container">
<div class="login-form">
<!-- Title with Yacht Dice - Login -->
<h2 class="login-heading">Yacht Dice - Login</h2>
<div class="button-and-text">
<!-- Music button -->
<button id="playButton" class="music-button" onclick="playPause()">♫</button>
<div>
<p class="login-description">Rollin' with Yacht Dice,</p>
<p class="login-description" id="emoji">sail into the night ⛵🎲</p>
</div>
</div>
<br>
<div>
<label for="hostport" class="login-label">Host and Port</label>
<input type="text" id="hostport" name="hostport" class="login-input" value="archipelago.gg:38281" placeholder="Example: archipelago.gg:38281">
<label for="name" class="login-label">Player Name</label>
<input type="text" id="name" name="name" class="login-input"
value="This browser is probably not supported..." placeholder="Example: Yachty">
<label for="name" class="login-label">Password</label>
<input type="password" id="password" name="password" class="login-input" value="" placeholder="Leave blank if no password">
<input type="submit" value="Login" id="loginbutton" class="login-submit">