Who:n

By Hermitic crowHermitic crow

/* Global styles */

  • {

margin: 0;
padding: 0;
box-sizing: border-box;
}

body {
font-family: 'Arial', sans-serif;
background-color: #0d0d0d;
color: #dcdcdc;
line-height: 1.6;
overflow-x: hidden;
padding: 20px;
}

/* Header styling */
header {
text-align: center;
font-size: 2.5rem;
color: #ffffff;
margin-bottom: 30px;
text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

/* Section styling for SCP and Cult Information */
.section {
margin-bottom: 40px;
}

h2 {
font-size: 2rem;
color: #ff6600;
margin-bottom: 20px;
text-transform: uppercase;
letter-spacing: 1px;
border-bottom: 2px solid #ff6600;
padding-bottom: 5px;
}

p {
font-size: 1.1rem;
margin-bottom: 20px;
color: #dcdcdc;
}

ul {
list-style: none;
padding-left: 0;
}

ul li {
font-size: 1.1rem;
color: #bfbfbf;
margin-bottom: 10px;
}

/* Subtle animation for text elements */
@keyframes fadeIn {
from {
opacity: 0;
}
to {
opacity: 1;
}
}

.fade-in {
animation: fadeIn 1.5s ease-out forwards;
}

/* Special styling for cult elements */
.cult-header {
color: #ff6600;
text-align: center;
font-size: 2rem;
letter-spacing: 3px;
margin: 50px 0;
text-shadow: 0 0 20px rgba(255, 102, 0, 0.8);
}

.cult-symbol {
width: 200px;
height: 200px;
margin: 0 auto;
background: url('cult-symbol.png') no-repeat center center;
background-size: contain;
animation: rotateSymbol 10s linear infinite;
}

@keyframes rotateSymbol {
0% { transform: rotate(0deg); }
100% { transform: rotate(360deg); }
}

/* Styling for links and buttons */
a, button {
color: #ff6600;
text-decoration: none;
border: 2px solid #ff6600;
padding: 10px 20px;
background-color: transparent;
font-size: 1.2rem;
text-transform: uppercase;
display: inline-block;
margin-top: 20px;
transition: all 0.3s ease;
}

a:hover, button:hover {
background-color: #ff6600;
color: #0d0d0d;
cursor: pointer;
}

/* Footer Styling */
footer {
text-align: center;
font-size: 1rem;
color: #bfbfbf;
margin-top: 40px;
border-top: 2px solid #ff6600;
padding-top: 20px;
}

/* Dark, ethereal background patterns */
body::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: url('dark-pattern.png') repeat;
opacity: 0.05;
z-index: -1;
}


Thanks to tsangk for this great snippet: conditional-blocks


text above inserted with:

[[include :snippets:if START |unique=1|type=equal|var1=%%name%%|var2=conditional-blocks]]
**##red|Thanks to tsangk for this great snippet:##** [[[code:conditional-blocks]]]
[[include :snippets:if END]]



Other snippets posted by Hermitic crow

Who: - 21 Dec 2024 07:08


Rate this solution

If you think this solution is useful — rate it up!

rating: 0+x
Add a New Comment
Unless otherwise stated, the content of this page is licensed under Creative Commons Attribution-ShareAlike 3.0 License