Rail Cards CSS starts /* ===== RAIL SKELETON ===== */ #rail_show.rail-loading::after { content: ""; display: block; height: 290px; border-radius: 14px; background: linear-gradient(90deg, #e8e8e8 25%, #f5f5f5 50%, #e8e8e8 75%); background-size: 200% 100%; animation: railSkShimmer 1.4s infinite linear; } @keyframes railSkShimmer { 0% { background-position: 200% 0; } 100% { background-position: -200% 0; } } /* ========================================================= GLOBAL VARIABLES ========================================================= */ :root { --rail-gap: 16px; --rail-border-radius: 14px; --rail-card-width: 185px; --rail-card-height: 250px; --rail-thumb-height: 135px; --rail-bg-color: linear-gradient(145deg,#1e1e1e,#111); --rail-title-color: #ff6a2f; --rail-title-hover: #ff9b66; --rail-text-color: #cfcfcf; --rail-accent-glow: rgba(255,106,47,0.35); } /* ========================================================= RAIL CONTAINER ========================================================= */ .content-rail { margin: 35px 0; position: relative; } /* ========================================================= HEADER ========================================================= */ .content-rail-header { display: flex !important; align-items: center; gap: 10px; padding: 10px 14px; background: #f2f2f2; border-radius: 14px; box-shadow: 0 4px 12px rgba(0,0,0,0.05); flex-wrap: nowrap; overflow: hidden; } .content-rail-title { display: flex !important; align-items: center; gap: 8px; font-size: 13px; color: #666; white-space: nowrap; flex-wrap: nowrap; } .content-rail-title > a { display: inline-flex !important; align-items: center; gap: 6px; font-size: 13px; font-weight: 600; color: #ff6a2f; text-decoration: none; padding: 5px 12px; border-radius: 22px; background: #ffffff; transition: all .25s ease; box-shadow: 0 3px 8px rgba(0,0,0,0.06); } .content-rail-title > a::before { content: "πŸ“"; font-size: 13px; line-height: 1; } .content-rail-title > a:hover { background: #ff6a2f; color: #fff; transform: translateY(-2px); box-shadow: 0 6px 16px rgba(255,106,47,0.35); } /* ================= TOPICS ================= */ .header-topics { display: flex !important; align-items: center; gap: 6px; white-space: nowrap; } .subcat-label { font-size: 12px; color: #777; margin-left: 6px; } .header-topics a, .rail-topic { display: inline-flex !important; align-items: center; gap: 5px; font-size: 12px; color: #555; text-decoration: none; padding: 4px 10px; border-radius: 18px; background: #e9e9e9; transition: all .25s ease; } .header-topics a::before, .rail-topic::before { content: "🏷"; font-size: 11px; opacity: 0.9; } .header-topics a:hover, .rail-topic:hover { background: #ff6a2f; color: #fff; } /* ================= ARROWS ================= */ .row-arrows { margin-left: auto; display: flex !important; gap: 6px; } .row-arrows button { background: #222; color: #fff; border: none; padding: 6px 10px; border-radius: 8px; cursor: pointer; transition: .2s ease; } .row-arrows button:hover { background: #000; transform: translateY(-2px); } /* ========================================================= RAIL BODY ========================================================= */ .content-rail-body { display: flex !important; flex-direction: row !important; flex-wrap: nowrap !important; gap: var(--rail-gap); overflow-x: auto !important; overflow-y: hidden !important; scroll-behavior: smooth; padding-bottom: 14px; -webkit-overflow-scrolling: touch; scroll-snap-type: x mandatory; scrollbar-width: thin; scrollbar-color: #ff6a2f #1a1a1a; } .content-rail-body::-webkit-scrollbar { height: 8px; } .content-rail-body::-webkit-scrollbar-track { background: #1a1a1a; border-radius: 10px; } .content-rail-body::-webkit-scrollbar-thumb { background: linear-gradient(90deg,#ff6a2f,#ff9b66); border-radius: 10px; } /* ========================================================= BASE CARD — default (card style) ========================================================= */ .rail-item { display: flex !important; flex-direction: column !important; flex: 0 0 auto !important; min-width: var(--rail-card-width) !important; width: var(--rail-card-width) !important; height: var(--rail-card-height) !important; border-radius: var(--rail-border-radius); overflow: hidden; text-align: center; background: var(--rail-bg-color); transition: 0.35s ease; scroll-snap-align: start; position: relative; box-sizing: border-box !important; } .rail-item:hover { transform: translateY(-6px) scale(1.02); box-shadow: 0 12px 28px rgba(0,0,0,0.6), 0 0 18px var(--rail-accent-glow); } /* ========================================================= THUMB ========================================================= */ .rail-thumb { display: block !important; width: 100% !important; height: var(--rail-thumb-height) !important; min-height: var(--rail-thumb-height) !important; max-height: var(--rail-thumb-height) !important; overflow: hidden; position: relative; flex-shrink: 0 !important; } .rail-thumb::after { content: ""; position: absolute; bottom: 0; left: 0; width: 100%; height: 60%; background: linear-gradient(to top,rgba(0,0,0,0.8),transparent); } .rail-thumb img { width: 100% !important; height: 100% !important; max-width: 100% !important; object-fit: cover; display: block !important; transition: 0.4s ease; } .rail-item:hover .rail-thumb img { transform: scale(1.08); } /* ========================================================= TITLE & AUTHOR — base ========================================================= */ .rail-title { display: block !important; font-size: 14px; font-weight: 600; text-decoration: none; color: var(--rail-title-color); transition: 0.25s ease; line-height: 1.4; padding: 8px 10px 4px; } .rail-title:hover { color: var(--rail-title-hover); } .rail-author { display: block !important; font-size: 12px; color: var(--rail-text-color); line-height: 1.2; padding: 0 10px 8px; } .by-label { display: block !important; font-size: 11px; margin-bottom: 2px; opacity: 0.8; } .author-list { margin-top: 2px; } .author-item { display: block !important; line-height: 1.2; margin: 0; padding: 0; } .author-role { margin-left: 3px; font-size: 11px; opacity: 0.85; } .rail-author a { color: #00d4ff; text-decoration: none; transition: .2s; } .rail-author a:hover { color: #ffd54f; } /* ========================================================= CTA BOX ========================================================= */ .content-rail > .cta-line { display: inline-block !important; background: linear-gradient(135deg,#fff7f0,#ffe8d9); border: 1px solid #ffd3b5; border-radius: 12px; padding: 8px 14px; margin-bottom: 10px; font-size: 14px; line-height: 1.6; box-shadow: 0 4px 12px rgba(0,0,0,0.05); } .cta-line { display: inline-block !important; margin-right: 12px; font-weight: 500; color: #444; } .cta-line a { color: #e65100; font-weight: 600; text-decoration: none; transition: 0.2s; } .cta-line a:hover { color: #bf360c; text-decoration: underline; } /* ========================================================= PROFILE TAG ========================================================= */ .profile-tag { display: inline-block !important; font-size: 11px; background: #0077ff; color: #fff; padding: 2px 6px; border-radius: 6px; margin-left: 6px; font-weight: 500; } /* ========================================================= STYLE 1 — NEON Pehchaan: glowing border + neon orange title clearly visible Col L mein likho: neon ========================================================= */ .rail-neon { background: #080808 !important; border: 1.5px solid #ff6a2f !important; box-shadow: 0 0 8px rgba(255,106,47,0.4), 0 0 20px rgba(255,106,47,0.15), inset 0 0 8px rgba(255,106,47,0.04) !important; } .rail-neon:hover { transform: translateY(-6px) scale(1.02) !important; box-shadow: 0 0 18px rgba(255,106,47,0.7), 0 0 50px rgba(255,106,47,0.25), inset 0 0 16px rgba(255,106,47,0.08) !important; border-color: #ff9b66 !important; } /* Neon title — thumbnail ke UPAR overlay pe dikhta hai */ .rail-neon .rail-thumb { position: relative !important; } .rail-neon .rail-thumb::after { background: linear-gradient(to top,rgba(8,8,8,1) 30%,transparent) !important; } .rail-neon .rail-title { color: #ff6a2f !important; text-shadow: 0 0 8px rgba(255,106,47,0.8), 0 0 20px rgba(255,106,47,0.4) !important; font-size: 13px !important; padding: 8px 10px 4px !important; letter-spacing: 0.3px; } .rail-neon .rail-title:hover { color: #ffb347 !important; text-shadow: 0 0 14px rgba(255,106,47,1), 0 0 30px rgba(255,106,47,0.6) !important; } .rail-neon .rail-author a { color: #00e5ff !important; } .rail-neon .by-label { color: #ff6a2f !important; opacity: 0.7; } /* ========================================================= STYLE 2 — GLASS Pehchaan: title thumbnail ke UPAR overlay mein dikh raha hai Col L mein likho: glass ========================================================= */ .rail-glass { background: rgba(255,255,255,0.06) !important; border: 1px solid rgba(255,255,255,0.18) !important; box-shadow: 0 4px 20px rgba(0,0,0,0.35) !important; overflow: hidden !important; position: relative !important; } .rail-glass:hover { background: rgba(255,255,255,0.1) !important; border-color: rgba(255,255,255,0.35) !important; transform: translateY(-6px) scale(1.02) !important; box-shadow: 0 16px 40px rgba(0,0,0,0.5) !important; } /* Glass: thumb full card cover karta hai */ .rail-glass .rail-thumb { position: absolute !important; top: 0 !important; left: 0 !important; width: 100% !important; height: 100% !important; min-height: 100% !important; max-height: 100% !important; z-index: 0 !important; } .rail-glass .rail-thumb img { width: 100% !important; height: 100% !important; object-fit: cover !important; filter: brightness(0.45) !important; transition: 0.4s ease !important; } .rail-glass:hover .rail-thumb img { filter: brightness(0.35) !important; transform: scale(1.08) !important; } .rail-glass .rail-thumb::after { background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.4) 50%, transparent 100%) !important; z-index: 1; } /* Glass: title + author upar overlay mein */ .rail-glass .rail-title { position: relative !important; z-index: 2 !important; color: #ffffff !important; font-size: 13px !important; text-shadow: 0 1px 6px rgba(0,0,0,0.8) !important; padding: 10px 10px 4px !important; margin-top: auto; } .rail-glass .rail-title:hover { color: #ffe0cc !important; } .rail-glass .rail-author { position: relative !important; z-index: 2 !important; color: rgba(255,255,255,0.75) !important; } .rail-glass .rail-author a { color: #7dd3fc !important; } /* Glass: flex column reverse taake title neeche rahe */ .rail-glass { display: flex !important; flex-direction: column !important; justify-content: flex-end !important; } /* ========================================================= STYLE 3 — GOLD (dark premium) Pehchaan: gold border + serif/different font title Col L mein likho: gold ========================================================= */ .rail-gold { background: linear-gradient(160deg,#1c1500,#0d0a00,#1a1200) !important; border: 1.5px solid #8b6914 !important; box-shadow: 0 4px 16px rgba(139,105,20,0.25), inset 0 1px 0 rgba(212,160,23,0.1) !important; } .rail-gold:hover { transform: translateY(-6px) scale(1.02) !important; border-color: #d4a017 !important; box-shadow: 0 12px 32px rgba(212,160,23,0.35), 0 0 20px rgba(212,160,23,0.15), inset 0 1px 0 rgba(212,160,23,0.2) !important; } .rail-gold .rail-thumb::after { background: linear-gradient(to top,rgba(13,10,0,0.95),transparent) !important; } /* Gold: alag font aur style title ke liye */ .rail-gold .rail-title { color: #c9940a !important; font-family: Georgia, 'Times New Roman', serif !important; font-size: 13px !important; font-style: italic !important; letter-spacing: 0.3px !important; text-shadow: 0 1px 3px rgba(0,0,0,0.7) !important; padding: 8px 10px 4px !important; } .rail-gold .rail-title:hover { color: #f0c040 !important; text-shadow: 0 0 10px rgba(240,192,64,0.35) !important; } /* Gold top decorative line */ .rail-gold::before { content: ""; display: block; height: 2px; background: linear-gradient(90deg,transparent,#d4a017,transparent); position: absolute; top: 0; left: 10%; right: 10%; border-radius: 2px; } .rail-gold .rail-author { color: #b09060 !important; } .rail-gold .rail-author a { color: #e8c060 !important; } .rail-gold .by-label { color: #8b6914 !important; } /* ========================================================= STYLE 4 — MAGAZINE (horizontal layout) Pehchaan: image left, text right — bilkul alag layout Col L mein likho: magazine ========================================================= */ .rail-magazine { background: #ffffff !important; border: 1px solid #e8e8e8 !important; box-shadow: 0 2px 10px rgba(0,0,0,0.06) !important; /* Horizontal layout */ flex-direction: row !important; width: 280px !important; min-width: 280px !important; height: 100px !important; align-items: stretch !important; text-align: left !important; border-radius: 12px !important; } .rail-magazine:hover { transform: translateY(-4px) !important; box-shadow: 0 8px 24px rgba(0,0,0,0.12) !important; border-color: #ff6a2f !important; } /* Magazine: thumb left side — fixed width */ .rail-magazine .rail-thumb { width: 90px !important; min-width: 90px !important; max-width: 90px !important; height: 100% !important; min-height: 100% !important; max-height: 100% !important; flex-shrink: 0 !important; border-radius: 12px 0 0 12px !important; } .rail-magazine .rail-thumb::after { display: none !important; } .rail-magazine .rail-thumb img { border-radius: 12px 0 0 12px !important; filter: none !important; } .rail-magazine:hover .rail-thumb img { transform: scale(1.05) !important; } /* Magazine: text right side */ .rail-magazine .rail-title { color: #1a1a1a !important; font-size: 12px !important; font-weight: 700 !important; text-shadow: none !important; padding: 8px 8px 4px !important; line-height: 1.35 !important; display: -webkit-box !important; -webkit-line-clamp: 3 !important; -webkit-box-orient: vertical !important; overflow: hidden !important; text-align: left !important; } .rail-magazine .rail-title:hover { color: #ff6a2f !important; } .rail-magazine .rail-author { color: #888 !important; font-size: 11px !important; padding: 0 8px 8px !important; text-align: left !important; } .rail-magazine .rail-author a { color: #0077cc !important; } .rail-magazine .by-label { color: #aaa !important; } /* Magazine: left border accent */ .rail-magazine::after { content: ""; display: block; position: absolute; left: 90px; top: 15%; height: 70%; width: 2px; background: linear-gradient(to bottom, transparent, #ff6a2f, transparent); border-radius: 2px; } /* ========================================================= MOBILE ========================================================= */ @media (max-width: 600px) { .content-rail > .cta-line { font-size: 13px; padding: 6px 10px; } .cta-line { display: block !important; margin-bottom: 4px; } } @media (max-width: 480px) { .content-rail-header { flex-wrap: wrap !important; align-items: flex-start; gap: 6px; padding: 10px; overflow-x: auto; } .content-rail-title { flex: 1 1 100% !important; white-space: normal; } .content-rail-header > div[style*="position:absolute"] { position: static !important; width: 100%; align-items: center !important; margin-top: 4px; } .row-arrows { justify-content: center; width: 100%; } .rail-item { width: 150px !important; min-width: 150px !important; height: 215px !important; } /* Magazine mobile pe bhi horizontal rakho — thoda chota */ .rail-magazine { width: 240px !important; min-width: 240px !important; height: 90px !important; } .rail-magazine .rail-thumb { width: 80px !important; min-width: 80px !important; } .rail-magazine::after { left: 80px; } .rail-thumb { height: 110px !important; min-height: 110px !important; max-height: 110px !important; } } Rail Cards CSS Ends

$show=404

404 - Page Not Found

It seems this page does not exist.

You can visit our old site: old.urdutubes.com

Or visit our new site: urdutubes.com

Jamia Masjid Zaitunia

Jamia Masjid Zaitunia – History, Architecture, and Spiritual Importance Jamia Masjid Zaitunia is a historic mosque known for its architect...

Jamia Masjid Zaitunia – History, Architecture, and Spiritual Importance

Jamia Masjid Zaitunia is a historic mosque known for its architectural beauty, cultural significance, and role as a spiritual center.

Jamia Masjid Zaitunia is one of the most respected mosques, deeply connected with the history and traditions of the community.

The mosque was constructed with dedication over time, reflecting skilled craftsmanship and detailed architectural design.

It serves not only as a place of worship but also as a center for unity, where people gather for spiritual and social connection.

Its peaceful environment provides comfort and reflection for visitors, making it an important part of daily life.

Jamia Masjid Zaitunia continues to represent faith, tradition, and community strength.

COMMENTS

Loaded All Posts Not found any posts VIEW ALL Readmore Reply Cancel reply Delete By Home PAGES POSTS View All RECOMMENDED FOR YOU! Click onButton to Load More... LABEL ARCHIVE SEARCH ALL POSTS Not found any post match with your request Back Home Sunday Monday Tuesday Wednesday Thursday Friday Saturday Sun Mon Tue Wed Thu Fri Sat January February March April May June July August September October November December Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec just now 1 minute ago $$1$$ minutes ago 1 hour ago $$1$$ hours ago Yesterday $$1$$ days ago $$1$$ weeks ago more than 5 weeks ago Followers Follow THIS PREMIUM CONTENT IS LOCKED STEP 1: Share to a social network STEP 2: Click the link on your social network Copy All Code Select All Code All codes were copied to your clipboard Can not copy the codes / texts, please press [CTRL]+[C] (or CMD+C with Mac) to copy Table of Content