User:CapacitySAT/common.css
/* Root Theme Variables */
:root {
--font-title: "Exo 2", sans-serif;
--font-body: "Exo 2", sans-serif;
--tx-color: #10121d; /* Text color */
--bg-color: #ffffff; /* Background color */
--link-color: #016162; /* Blue Stone for links */
--accent-color: #27504b; /* Plantation for accents */
--highlight-color: #ffcc00; /* Highlight color for emphasis */
--soft-bg: rgba(255, 255, 255, 0.1); /* Soft background */
--cloud-color: rgba(255, 255, 255, 0.3); /* Cloud effect */
--border-color: #27504b; /* Border color */
--neutral-bg: #f5f5f5; /* Soft neutral background */
--neutral-text: #555; /* Neutral text */
}
/* General Body Styles */
body {
font-family: var(--font-body);
color: var(--tx-color);
background-color: var(--bg-color);
line-height: 1.6;
margin: 0;
padding: 0;
}
/* Headings */
h1, h2, h3, h4, h5, h6 {
font-family: var(--font-title);
color: var(--highlight-color);
text-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
margin-top: 20px;
}
/* Sidebar */
#sidebar {
width: 16em;
background-color: var(--soft-bg);
color: var(--tx-color);
padding: 10px;
border-radius: 5px;
}
/* Main Content Area */
#content {
width: 75em;
max-width: 100%;
margin: auto;
padding: 20px;
background-color: var(--neutral-bg);
border: 1px solid var(--border-color);
border-radius: 10px;
}
/* Links */
a {
color: var(--link-color);
text-decoration: none;
transition: color 0.2s ease-in-out;
}
a:hover {
color: var(--highlight-color);
}
/* Existing & Non-Existing Links */
a:visited {
color: var(--neutral-text);
}
.new {
color: red;
font-weight: bold;
}
/* Table Styling */
table {
width: 100%;
border-collapse: collapse;
margin: 20px 0;
}
th, td {
border: 1px solid var(--border-color);
padding: 10px;
text-align: left;
}
th {
background-color: var(--accent-color);
color: #ffffff;
}
/* Image Styling */
img {
max-width: 100%;
height: auto;
border-radius: 5px;
border: 2px solid var(--border-color);
}
/* Blockquote */
blockquote {
font-style: italic;
background-color: var(--soft-bg);
padding: 15px;
border-left: 5px solid var(--highlight-color);
}
/* Responsive Design */
@media (max-width: 800px) {
#content {
width: 95%;
padding: 15px;
}
#sidebar {
width: auto;
padding: 5px;
}
}
@media (max-width: 480px) {
#sidebar {
display: none;
}
}
Content Disclaimer
Informasi ini disarikan dari Wikipedia dan disajikan kembali untuk tujuan edukasi. Konten tersedia di bawah lisensi CC BY-SA 3.0. Kami tidak bertanggung jawab atas ketidakakuratan data yang bersumber dari kontribusi publik tersebut.
- The information displayed on this website is sourced in part or in whole from Wikipedia and has been adapted for the purpose of restating it. We strive to provide accurate and relevant information, however:
- There is no guarantee of absolute accuracy. Wikipedia is an open, collaborative project that can be edited by anyone, so information is subject to change.
- It is not intended to constitute professional advice. The content displayed is for informational and educational purposes only. For important decisions (e.g., medical, legal, or financial), please consult a professional.
- Content copyright. Wikipedia is licensed under the Creative Commons Attribution-ShareAlike License (CC BY-SA). This means that content may be reused with appropriate attribution and shared under a similar license.
- Responsible use. Any risk arising from the use of information from this website is entirely the responsibility of the user.