Toggle menu
Toggle preferences menu
Toggle personal menu
Not logged in
Your IP address will be publicly visible if you make any edits.

Difference between revisions

From Aurora Wiki
Content deleted Content added
No edit summary
No edit summary
Line 13: Line 13:
{{DISPLAYTITLE:Welcome to Your Wiki!}}
{{DISPLAYTITLE:Welcome to Your Wiki!}}


<!-- ==================== Main Page Template Start ==================== -->
<!-- ========= Dual Choice Section: Serious vs. Unserious ========= -->
<style>
/* Container for the dual-choice sections */
.dual-choice-container {
display: flex;
justify-content: center;
align-items: center;
margin: 20px 0;
height: 300px;
}

/* Shared styles for both choices */
.dual-choice {
flex: 1;
margin: 0 10px;
position: relative;
overflow: hidden;
cursor: pointer;
text-align: center;
color: #fff;
border-radius: 8px;
transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Hover effect: slight scale and box-shadow */
.dual-choice:hover {
transform: scale(1.05);
box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
}

/* Pseudo-element for the background image overlay */
.dual-choice::before {
content: "";
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-size: cover;
opacity: 0;
transition: opacity 0.5s ease;
z-index: 0;
}

/* On hover, fade in the background image overlay */
.dual-choice:hover::before {
opacity: 0.5;
}

/* Text style for the choice labels */
.dual-choice .choice-text {
position: relative;
z-index: 1;
font-size: 28px;
font-weight: bold;
line-height: 300px; /* vertically centers the text */
}

/* Serious side styling */
.dual-choice.serious {
background-color: #2c3e50; /* Fallback background color */
}
.dual-choice.serious::before {
background-image: url('https://example.com/serious-bg.jpg'); /* Replace with your serious image */
}

/* Unserious side styling */
.dual-choice.unserious {
background-color: #e74c3c; /* Fallback background color */
}
.dual-choice.unserious::before {
background-image: url('https://example.com/unserious-bg.jpg'); /* Replace with your unserious image */
}
</style>

<div class="dual-choice-container">
<div class="dual-choice serious" onclick="window.location.href='/Serious_Main_Page';">
<div class="choice-text">Serious Wiki</div>
</div>
<div class="dual-choice unserious" onclick="window.location.href='/Unserious_Main_Page';">
<div class="choice-text">Unserious Wiki</div>
</div>
</div>
<!-- ========= End of Dual Choice Section ========= -->

<!-- ==================== Main Page Template ==================== -->


<!-- Header Section -->
<h1>Welcome to Your Wiki!</h1>
<h1>Welcome to Your Wiki!</h1>
<p>
<p>
Line 22: Line 106:
</p>
</p>


<!-- Navigation Section -->
== Navigation ==
== Navigation ==
* [[Main Page|Home]]
* [[Main Page|Home]]
Line 29: Line 112:
* [[Help:Contents|Help]]
* [[Help:Contents|Help]]


<!-- Featured Articles Section -->
== Featured Articles ==
== Featured Articles ==
Below are some highlighted articles from our collection:
Below are some highlighted articles from our collection:
Line 37: Line 119:
* [[Article4|Featured Article 4]] – A brief description of this featured topic.
* [[Article4|Featured Article 4]] – A brief description of this featured topic.


<!-- Categories Section -->
== Categories ==
== Categories ==
Browse our content by subject:
Browse our content by subject:
Line 51: Line 132:
* [[Category:Philosophy|Philosophy]]
* [[Category:Philosophy|Philosophy]]


<!-- Important Pages Section -->
== Important Pages ==
== Important Pages ==
Some pages you might want to visit:
Some pages you might want to visit:
Line 62: Line 142:
* [[Help:Editing|How to Edit]]
* [[Help:Editing|How to Edit]]


<!-- Latest News Section -->
== Latest News ==
== Latest News ==
Stay informed with our latest updates:
Stay informed with our latest updates:
Line 70: Line 149:
* [[News:Headline4|News Headline 4]]
* [[News:Headline4|News Headline 4]]


<!-- Community & Projects Section -->
== Community & Projects ==
== Community & Projects ==
Engage with our community and explore our projects:
Engage with our community and explore our projects:
Line 78: Line 156:
* [[Special:Contributions|User Contributions]]
* [[Special:Contributions|User Contributions]]


<!-- Search Section -->
== Search ==
== Search ==
Use the search box below to quickly find articles:
Use the search box below to quickly find articles:
{{SEARCH}}
{{SEARCH}}


<!-- Explore More Section -->
== Explore More ==
== Explore More ==
Discover additional topics and portals:
Discover additional topics and portals:
Line 93: Line 169:
* [[Portal:Sports|Sports Portal]]
* [[Portal:Sports|Sports Portal]]


<!-- Footer Section -->
<hr />
<hr />
<div style="text-align: center;">
<div style="text-align: center;">
&copy; {{CURRENTYEAR}} Your Wiki Name. All rights reserved.
&copy; {{CURRENTYEAR}} Your Wiki Name. All rights reserved.
</div>
</div>

<!-- ==================== Main Page Template End ==================== -->

Revision as of 12:27, 17 February 2025


<style> /* Container for the dual-choice sections */ .dual-choice-container {

 display: flex;
 justify-content: center;
 align-items: center;
 margin: 20px 0;
 height: 300px;

}

/* Shared styles for both choices */ .dual-choice {

 flex: 1;
 margin: 0 10px;
 position: relative;
 overflow: hidden;
 cursor: pointer;
 text-align: center;
 color: #fff;
 border-radius: 8px;
 transition: transform 0.3s ease, box-shadow 0.3s ease;

}

/* Hover effect: slight scale and box-shadow */ .dual-choice:hover {

 transform: scale(1.05);
 box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);

}

/* Pseudo-element for the background image overlay */ .dual-choice::before {

 content: "";
 position: absolute;
 top: 0;
 left: 0;
 width: 100%;
 height: 100%;
 background-size: cover;
 opacity: 0;
 transition: opacity 0.5s ease;
 z-index: 0;

}

/* On hover, fade in the background image overlay */ .dual-choice:hover::before {

 opacity: 0.5;

}

/* Text style for the choice labels */ .dual-choice .choice-text {

 position: relative;
 z-index: 1;
 font-size: 28px;
 font-weight: bold;
 line-height: 300px; /* vertically centers the text */

}

/* Serious side styling */ .dual-choice.serious {

 background-color: #2c3e50; /* Fallback background color */

} .dual-choice.serious::before {

 background-image: url('https://example.com/serious-bg.jpg'); /* Replace with your serious image */

}

/* Unserious side styling */ .dual-choice.unserious {

 background-color: #e74c3c; /* Fallback background color */

} .dual-choice.unserious::before {

 background-image: url('https://example.com/unserious-bg.jpg'); /* Replace with your unserious image */

} </style>

Serious Wiki
Unserious Wiki


Welcome to Your Wiki!

This is the central hub for our wiki—a place to browse articles, explore categories, and see our latest updates. Enjoy your stay and feel free to contribute!

Navigation

Featured Articles

Below are some highlighted articles from our collection:

Categories

Browse our content by subject:

Important Pages

Some pages you might want to visit:

Latest News

Stay informed with our latest updates:

Community & Projects

Engage with our community and explore our projects:

Search

Use the search box below to quickly find articles: Template:SEARCH

Explore More

Discover additional topics and portals:


 © 2025 Your Wiki Name. All rights reserved.