MediaWiki:Common.css
From Citypedia Online
Note: After publishing, you may have to bypass your browser's cache to see the changes.
- Firefox / Safari: Hold Shift while clicking Reload, or press either Ctrl-F5 or Ctrl-R (⌘-R on a Mac)
- Google Chrome: Press Ctrl-Shift-R (⌘-Shift-R on a Mac)
- Edge: Hold Ctrl while clicking Refresh, or press Ctrl-F5.
/* CSS placed here will be applied to all skins */
/* Add icons to sidebar city links */
#n-Mumbai a {
background: url(https://citypedia.online/images/0/0b/Mumbai.png) no-repeat left center;
padding-left: 25px !important;
background-size: 18px;
}
#n-Pune a {
background: url(https://citypedia.online/images/8/86/Pune.png) no-repeat left center;
padding-left: 25px !important;
background-size: 18px;
}
#n-Thane a {
background: url(https://citypedia.online/images/d/d0/Thane.png) no-repeat left center;
padding-left: 25px !important;
background-size: 18px;
}
/* Container Card */
.cp-welcome-card {
background: #ffffff;
border: 1px solid #d1d5db;
border-radius: 12px;
padding: 30px;
margin: 20px 0;
box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
font-family: sans-serif;
}
/* Marathi Text */
.cp-welcome-text {
font-size: 18px;
line-height: 1.8;
color: #374151;
margin-bottom: 25px;
text-align: justify;
}
/* Red Highlight */
.cp-highlight {
color: #e11d48;
font-weight: bold;
border-bottom: 2px solid #e11d48;
}
/* Form Layout */
.cp-create-box form {
display: flex;
max-width: 700px;
gap: 0;
}
/* The Input Field */
.cp-input {
flex: 1;
padding: 14px 20px;
border: 2px solid #3b82f6;
border-right: none;
border-radius: 8px 0 0 8px;
font-size: 16px;
outline: none;
transition: all 0.3s;
}
.cp-input:focus {
background-color: #eff6ff;
}
/* The Button */
.cp-btn {
background-color: #3b82f6;
color: white;
padding: 14px 25px;
border: 2px solid #3b82f6;
border-radius: 0 8px 8px 0;
font-size: 16px;
font-weight: bold;
cursor: pointer;
transition: background 0.3s;
}
.cp-btn:hover {
background-color: #2563eb;
border-color: #2563eb;
}
