Compare commits

...

2 Commits

Author SHA1 Message Date
4ee213de0a shit 2025-01-01 16:08:46 -08:00
1bfed27f46 peak 2025-01-01 16:08:24 -08:00
4 changed files with 66 additions and 13 deletions

View File

@ -35,9 +35,11 @@
<body>
<div id="navbarContainer">
<div id="navbar">
<p id="bigtext">CactusSMP</p>
<a>About</a>
<a>Play</a>
<a href="/index.html" id="bigtext">CactusSMP</a>
<a href="/about.html">About</a>
<a href="/gallery.html">Gallery</a>
<a href="/play/index.html">Play</a>
<a href="https://cactus-smp.craftingstore.net/">Shop</a>
<a id="discord" href="https://discord.gg/2xHAsegC">Discord</a>
<div id="copyIp">
<button id="copyButton" type="button">
@ -67,7 +69,7 @@
</ul>
<h3>Join Us!</h3>
<p>If you're ready to dive into the action, head to our <a href="/play">play page</a> to get started. we can't wait to see you on CactusSMP!</p>
<p>If you're ready to dive into the action, head to our <a id="diddy" href="/play">play page</a> to get started. we can't wait to see you on CactusSMP!</p>
</p>
</p>
</div>

35
gallery.html Normal file
View File

@ -0,0 +1,35 @@
<html>
<head>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100..900;1,100..900&family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap" rel="stylesheet">
<link href="/styles/index.css" rel="stylesheet">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css">
<title>CactusSMP</title>
</head>
<body>
<div id="navbarContainer">
<div id="navbar">
<a id="bigtext" href="/index.html">CactusSMP</a>
<a href="/about.html">About</a>
<a href="/gallery.html">Gallery</a>
<a href="/play/index.html">Play</a>
<a href="https://cactus-smp.craftingstore.net/">Shop</a>
<a id="discord" href="https://discord.gg/2xHAsegC">Discord</a>
<div id="copyIp">
<button id="copyButton" type="button">
<i class="bi bi-clipboard" id="copyIcon"></i>
</button>
<input type="text" readonly="true" value="Coming Soon!" id="ip"/>
</div>
<script src="/js/copy.js"></script>
</div>
</div>
<div id="images">
lmao no images silly server not up yet
</div>
<div id="footer">
<p id="footerText">© CactusSMP Admins</p>
<div>
</body>
</html>

View File

@ -10,10 +10,10 @@
<body>
<div id="navbarContainer">
<div id="navbar">
<p id="bigtext">CactusSMP</p>
<a id="bigtext" href="/index.html">CactusSMP</a>
<a href="/about.html">About</a>
<a>Gallery</a>
<a>Play</a>
<a href="/gallery.html">Gallery</a>
<a href="/play/index.html">Play</a>
<a href="https://cactus-smp.craftingstore.net/">Shop</a>
<a id="discord" href="https://discord.gg/2xHAsegC">Discord</a>
<div id="copyIp">

View File

@ -25,17 +25,30 @@
font-size: 20px;
text-decoration: none;
}
#images > img {
width: 100px;
height: 200px;
border-color: initial;
border-radius: 0;
}
#images > img:hover{
border-radius: 20px;
border-color: beige;
}
#images {
display: flex;
flex-direction: row;
}
#navbar a:hover {
cursor: pointer;
}
#bigtext{
font-size: 25px;
font-weight: bold;
padding-left: 10px;
padding-right: 10px;
color:#1dc460;
font-size: 25px !important;
font-weight: bold !important;
padding-left: 10px !important;
padding-right: 10px !important;
color:#1dc460 !important;
}
#footer{
background-color:grey;
@ -125,4 +138,7 @@ input{
height: 70%;
margin-top: 2%;
margin-bottom: 2%;
}
#diddy{
color: #5865F2 !important;
}