commit 80451c0b6341f9f98484c0cea57d51bde16a331d Author: Taylor Courage Date: Wed Feb 26 06:48:37 2025 -0500 Initial commit - general layout setup diff --git a/assets/SSL.webp b/assets/SSL.webp new file mode 100644 index 0000000..a084b53 Binary files /dev/null and b/assets/SSL.webp differ diff --git a/assets/champ3.webp b/assets/champ3.webp new file mode 100644 index 0000000..c99454d Binary files /dev/null and b/assets/champ3.webp differ diff --git a/assets/plat3.webp b/assets/plat3.webp new file mode 100644 index 0000000..4e7247c Binary files /dev/null and b/assets/plat3.webp differ diff --git a/data.css b/data.css new file mode 100644 index 0000000..63d6d1b --- /dev/null +++ b/data.css @@ -0,0 +1,74 @@ +#generalBody { + width: 400px; + margin: 0; + font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; +} + +#leaderBody { + width: 400px; + margin: 0; + font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; +} + +#informationContentPanel { + margin: auto; + padding-left: 10px; + padding-right: 10px; + padding-bottom: 15px; + flex-grow: 1; + flex-shrink: 1; + /*box-shadow: 0px 5px 10px;*/ +} + +#informationContentPanel h4,h5 { + text-align: center; +} + +#divisionsTable { + width: 90%; + margin: auto; + padding-top: 15px; + padding-left: 10px; + padding-right: 10px; + padding-bottom: 30px; + text-align: center; +} + +#divisionsTable th { + border-bottom: 1px solid black; +} + +#informationTable { + border-collapse: collapse; + width: 90%; + margin: auto; + padding-top: 5px; + padding-left: 10px; + padding-right: 10px; +} + +#informationTable tr { + border-bottom: 1px solid black; +} + + + +.infoTableLeftColumn { + text-align: left; + padding-top: 7px; + padding-bottom: 7px; +} + +.infoTableRightColumn { + text-align: right; +} + +.divTableLeftColumn { + text-align: center; + padding-top: 7px; + padding-bottom: 7px; +} + +.divTableRightColumn { + text-align: center; +} \ No newline at end of file diff --git a/general.html b/general.html new file mode 100644 index 0000000..578d895 --- /dev/null +++ b/general.html @@ -0,0 +1,61 @@ + + + + + + + + + + TROJAN'S GENERAL DATA SHIT + + + +
+

GENERAL INFORMATION

+
+ + + + + + + + + + + + + + + + + + +
DivisionMax Rank
Openplat 3
Intermediatechamp 3
MainSupersonic Legend
+ + + + + + + + + + + + + + + + + + + + + + +
Total # players:Coming soon!
Total # Trophies won:Coming soon!
Most Trophies - Open:Coming soon!
Most Trophies - Intermediate:Coming soon!
Most Trophies - Main:Coming soon!
+
+ + \ No newline at end of file diff --git a/index.html b/index.html new file mode 100644 index 0000000..bb98c22 --- /dev/null +++ b/index.html @@ -0,0 +1,27 @@ + + + + + + + + + Trojan's Trophy Room + + + +
+

Trojan's Trophy Room

+

Choose a division to see results!

+ +

 

+ +
+ + \ No newline at end of file diff --git a/intermediate.html b/intermediate.html new file mode 100644 index 0000000..67c9aac --- /dev/null +++ b/intermediate.html @@ -0,0 +1,57 @@ + + + + + + + + + + INTERMEDIATE DIVISION DATA + + + +
+

INTERMEDIATE DIVISION

+
Max rank: Champ 3
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
TrojanDestinyRL3
Endeavor2
KingKuna2
vixify2
Aura1
imKryss1
Priickles1
toxic_deadpool_x1
Vix1
+
+ + \ No newline at end of file diff --git a/main.html b/main.html new file mode 100644 index 0000000..4cb37cc --- /dev/null +++ b/main.html @@ -0,0 +1,41 @@ + + + + + + + + + + MAIN DIVISION DATA + + + +
+

MAIN DIVISION

+
Max rank: SSL
+ + + + + + + + + + + + + + + + + + + + + +
RU33ER DUCK73
Aura1
Seqsons1
Stewy1
Trash1
+
+ + \ No newline at end of file diff --git a/open.html b/open.html new file mode 100644 index 0000000..d8c019c --- /dev/null +++ b/open.html @@ -0,0 +1,33 @@ + + + + + + + + + + OPEN DIVISION DATA + + + +
+

OPEN DIVISION

+
Max rank: Plat 3
+ + + + + + + + + + + + + +
No DataNo Data
No DataNo Data
No DataNo Data
+
+ + \ No newline at end of file diff --git a/primary.css b/primary.css new file mode 100644 index 0000000..492fbaa --- /dev/null +++ b/primary.css @@ -0,0 +1,76 @@ +#body { + background-image: linear-gradient(to right, rgba(0, 0, 255, .8), rgba(255, 165, 0, .8)); + padding-top: 2%; + font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; + height:100% +} + +#contentFrame { + display: flex; + flex-direction: column; + margin: auto; + border: 1px solid black; + border-radius: 5px; + background-color: rgba(255, 255, 255, .2); + width: 800px; + min-height: 0px; + padding-top: 20px; + padding-left: 50px; + padding-right: 50px; + padding-bottom: 40px; +} + +#contentFrame h1 { + margin: auto; + padding-bottom: 20px; +} + +#contentFrame h3 { + margin: auto; + padding-bottom: 30px; +} + +#navPanel { + position: relative; + flex-wrap: wrap; + display: flex; + justify-content: center; + gap: 10%; +} + + +#navPanel a:hover { + color: black; + background-color: rgba(255, 165, 0, .6); +} + +#navPanel a:active { + box-shadow: 0px 2px 3px; + transform: translateY(4px) translateX(2px); +} + +.navLink { + border: 1px solid blue; + border-radius: 3px; + box-shadow: 2px 6px 6px; + text-decoration: none; + color: black; + padding: 10px; + padding-left: 30px; + padding-right: 30px; +} + +.dataFrame { + flex-grow: 1; + flex-shrink: 1; + margin: auto; + padding: 0; + border: none; + border-radius: 5px; + box-shadow: 0px 10px 15px; + background-color: rgba(183, 183, 255, 0.6); +} + +.newLine { + width: 100%; +} diff --git a/trojan.js b/trojan.js new file mode 100644 index 0000000..51806d4 --- /dev/null +++ b/trojan.js @@ -0,0 +1,5 @@ +function resizeIframe(obj) { + obj.style.height = obj.contentWindow.document.documentElement.scrollHeight + 'px'; + obj.style.width = obj.contentWindow.document.documentElement.scrollWidth + 'px'; + console.log (obj.style.width); +} \ No newline at end of file