Compare commits
2 Commits
0852775668
...
4ee213de0a
Author | SHA1 | Date | |
---|---|---|---|
4ee213de0a | |||
1bfed27f46 |
10
about.html
10
about.html
@ -35,9 +35,11 @@
|
|||||||
<body>
|
<body>
|
||||||
<div id="navbarContainer">
|
<div id="navbarContainer">
|
||||||
<div id="navbar">
|
<div id="navbar">
|
||||||
<p id="bigtext">CactusSMP</p>
|
<a href="/index.html" id="bigtext">CactusSMP</a>
|
||||||
<a>About</a>
|
<a href="/about.html">About</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>
|
<a id="discord" href="https://discord.gg/2xHAsegC">Discord</a>
|
||||||
<div id="copyIp">
|
<div id="copyIp">
|
||||||
<button id="copyButton" type="button">
|
<button id="copyButton" type="button">
|
||||||
@ -67,7 +69,7 @@
|
|||||||
</ul>
|
</ul>
|
||||||
|
|
||||||
<h3>Join Us!</h3>
|
<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>
|
||||||
</p>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
|
35
gallery.html
Normal file
35
gallery.html
Normal 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>
|
@ -10,10 +10,10 @@
|
|||||||
<body>
|
<body>
|
||||||
<div id="navbarContainer">
|
<div id="navbarContainer">
|
||||||
<div id="navbar">
|
<div id="navbar">
|
||||||
<p id="bigtext">CactusSMP</p>
|
<a id="bigtext" href="/index.html">CactusSMP</a>
|
||||||
<a href="/about.html">About</a>
|
<a href="/about.html">About</a>
|
||||||
<a>Gallery</a>
|
<a href="/gallery.html">Gallery</a>
|
||||||
<a>Play</a>
|
<a href="/play/index.html">Play</a>
|
||||||
<a href="https://cactus-smp.craftingstore.net/">Shop</a>
|
<a href="https://cactus-smp.craftingstore.net/">Shop</a>
|
||||||
<a id="discord" href="https://discord.gg/2xHAsegC">Discord</a>
|
<a id="discord" href="https://discord.gg/2xHAsegC">Discord</a>
|
||||||
<div id="copyIp">
|
<div id="copyIp">
|
||||||
|
@ -25,17 +25,30 @@
|
|||||||
font-size: 20px;
|
font-size: 20px;
|
||||||
text-decoration: none;
|
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 {
|
#navbar a:hover {
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
}
|
}
|
||||||
|
|
||||||
#bigtext{
|
#bigtext{
|
||||||
font-size: 25px;
|
font-size: 25px !important;
|
||||||
font-weight: bold;
|
font-weight: bold !important;
|
||||||
padding-left: 10px;
|
padding-left: 10px !important;
|
||||||
padding-right: 10px;
|
padding-right: 10px !important;
|
||||||
color:#1dc460;
|
color:#1dc460 !important;
|
||||||
}
|
}
|
||||||
#footer{
|
#footer{
|
||||||
background-color:grey;
|
background-color:grey;
|
||||||
@ -125,4 +138,7 @@ input{
|
|||||||
height: 70%;
|
height: 70%;
|
||||||
margin-top: 2%;
|
margin-top: 2%;
|
||||||
margin-bottom: 2%;
|
margin-bottom: 2%;
|
||||||
|
}
|
||||||
|
#diddy{
|
||||||
|
color: #5865F2 !important;
|
||||||
}
|
}
|
Loading…
x
Reference in New Issue
Block a user