Home – Whatfinger News

Breaking

.news-ticker-bar {
display: flex;
align-items: center;
background: #efefef;
color: #fff;
overflow: hidden;
font-family: Arial, sans-serif;
}

.news-label {
background: #990000;
color: #fff;
font-weight: bold;
padding: 10px 10px;
text-transform: uppercase;
font-size: 14px;
white-space: nowrap;
}

.news-ticker-container {
overflow: hidden;
flex-grow: 1;
position: relative;
}

.news-ticker-track {
display: inline-block;
white-space: nowrap;
will-change: transform;
animation: scroll-left linear infinite;
animation-duration: 260s;
}

.news-ticker-container:hover .news-ticker-track {
animation-play-state: paused;
}

.news-ticker-items {
display: inline-flex;
gap: 60px;
list-style: none;
margin: 0;
padding: 0;
}

.news-ticker-items li {
white-space: nowrap;
}

.news-ticker-items li a {
color: #000;
text-decoration: none;
font-size: 15px;
}

@keyframes scroll-left {
0% {
transform: translateX(0%);
}
100% {
transform: translateX(-50%);
}
}

(function(v,d,o,ai){ai=d.createElement(‘script’);ai.defer=true;ai.async=true;ai.src=v.location.protocol+o;d.head.appendChild(ai);})(window, document, ‘//a.vdo.ai/core/v-whatfinger-v6/vdo.ai.js’);


Your VIP Seat for the New American Golden Age

:root {
/* Primary Colors – Blue Accent */
–primary-blue: #4A90E2;
–primary-blue-dark: #357ABD;
–primary-blue-light: #6BA3E8;

/* Dark Theme Colors */
–bg-darkest: #0a0a0a;
–bg-dark: #1a1a1a;
–bg-darker: #2a2a2a;
–bg-card: #252525;

/* Text Colors */
–text-white: #ffffff;
–text-gray: #cccccc;
–text-muted: #999999;
–text-dim: #666666;

/* Status Colors */
–success: #10b981;
–error: #ef4444;
–warning: #f59e0b;

/* Border & Shadows */
–border-dark: #333333;
–shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.5);
–shadow-md: 0 4px 12px rgba(0, 0, 0, 0.3);

/* Transitions */
–transition: all 0.3s ease;
}

#topBar {
background: var(–bg-dark);
color: var(–text-white);
padding: 15px 20px;
display: grid;
grid-template-columns: 1fr auto 1fr;
gap: 20px;
align-items: center;
box-shadow: var(–shadow-lg);
position: sticky;
top: 0;
z-index: 1000;
border-bottom: 2px solid var(–border-dark);
}

/* Left Section */
.left-section {
display: flex;
flex-direction: column;
gap: 5px;
}

#logo {
font-size: 20px;
font-weight: 700;
color: var(–primary-blue);
text-decoration: none;
letter-spacing: 0.5px;
transition: var(–transition);
white-space: nowrap;
}

.custom-logo {
max-height: 38px;
width: auto;
border-radius: 6px;
}

#logo:hover {
color: var(–primary-blue-light);
}

#tagline {
font-size: 12px;
color: var(–text-muted);
font-weight: 400;
}

/* ========================================
MIDDLE SECTION – UPDATED
======================================== */
.middle-section {
display: flex;
gap: 50px;
align-items: center;
justify-content: space-between;
/* Changed from center */
}

/* Parent Site Info – NEW */
.parent-site-info {
display: flex;
flex-direction: column;
gap: 4px;
align-items: center;
}

#parentSiteLogo {
font-size: 18px;
font-weight: 700;
color: var(–primary-blue);
text-decoration: none;
letter-spacing: 0.5px;
transition: var(–transition);
white-space: nowrap;
}

#parentSiteLogo:hover {
color: var(–primary-blue-light);
text-shadow: 0 0 8px rgba(74, 144, 226, 0.5);
}

#parentTagline {
font-size: 11px;
color: var(–text-muted);
font-weight: 400;
text-align: center;
}

/* Action Buttons Wrapper – NEW */
.action-buttons {
display: flex;
gap: 10px;
}

.icon-btn {
background: var(–bg-darker);
border: 1px solid var(–border-dark);
color: var(–text-white);
/*padding: 10px 18px;*/
border-radius: 6px;
cursor: pointer;
font-size: 14px;
font-weight: 600;
transition: var(–transition);
white-space: nowrap;
}

.icon-btn:hover {
background: var(–primary-blue);
border-color: var(–primary-blue);
transform: translateY(-2px);
box-shadow: var(–shadow-md);
}

.icon-btn:active {
transform: translateY(0);
}

/* Right Section */
.right-section {
display: flex;
align-items: center;
gap: 12px;
justify-content: flex-end;
flex-wrap: wrap;
}

.user-info {
background: var(–bg-darker);
border: 1px solid var(–border-dark);
padding: 10px 14px;
border-radius: 6px;
font-size: 16px;
cursor: pointer;
color: var(–text-gray);
white-space: nowrap;
transition: var(–transition);
}

.user-info:hover {
background: var(–bg-card);
border-color: var(–primary-blue);
transform: translateY(-2px);
}

#logoutBtn {
padding: 10px 14px !important;
}

/* Category Wrapper */
#categoryWrapper {
display: flex;
align-items: center;
gap: 10px;
}

#categoryWrapper label {
font-size: 13px;
font-weight: 500;
color: var(–text-gray);
white-space: nowrap;
}

#categorySelect {
background: var(–bg-darker);
border: 1px solid var(–border-dark);
color: var(–text-white);
padding: 8px 12px;
border-radius: 6px;
font-size: 13px;
cursor: pointer;
transition: var(–transition);
min-width: 180px;
}

#categorySelect:focus {
outline: none;
border-color: var(–primary-blue);
box-shadow: 0 0 0 2px rgba(74, 144, 226, 0.2);
}

#categorySelect option {
background: var(–bg-dark);
color: var(–text-white);
}

#selectedCategoryMsg {
display: none;
font-size: 11px;
color: var(–text-muted);
margin-left: 8px;
}

/* Arrow Button */
#arrowButton {
background: var(–primary-blue);
border: none;
color: var(–text-white);
width: 40px;
height: 40px;
border-radius: 50%;
cursor: pointer;
font-size: 16px;
display: flex;
align-items: center;
justify-content: center;
transition: var(–transition);
padding: 0 !important;
}
#arrowButton img{
width: 1em !important;
}

#arrowButton:hover {
background: var(–primary-blue-light);
transform: scale(1.1);
box-shadow: var(–shadow-md);
}

/* Loading Bar */
#loadingBar {
height: 3px;
background: var(–primary-blue);
width: 0;
transition: width 0.3s ease;
position: sticky;
top: 0;
z-index: 999;
box-shadow: 0 0 10px var(–primary-blue);
}

.user-info {
color: #aaa;
font-size: 14px;
}

/* ========================================
RESPONSIVE HEADER
======================================== */

/* Tablet */
@media (max-width: 1024px) {
#topBar {
grid-template-columns: 1fr;
gap: 15px;
padding: 15px;
}

.left-section {
text-align: center;
align-items: center;
}

/* Tablet */
@media (max-width: 1024px) {
.middle-section {
justify-content: center;
flex-wrap: wrap;
}

.parent-site-info {
width: 100%;
order: 1;
margin-bottom: 10px;
}

.action-buttons {
order: 2;
}
}

.right-section {
order: 2;
justify-content: center;
}

#categorySelect {
min-width: 200px;
}
}

/* Mobile */
@media (max-width: 767px) {
#topBar {
padding: 12px;
gap: 12px;
}

#logo {
font-size: 18px;
}

#tagline {
font-size: 10px;
}

.icon-btn {
/*padding: 8px 14px;*/
font-size: 13px;
}

.user-info {
padding: 6px 12px;
font-size: 12px;
}

#categoryWrapper {
flex-direction: column;
gap: 8px;
width: 80%;
}

#categoryWrapper label {
font-size: 12px;
}

#categorySelect {
width: 100%;
min-width: unset;
font-size: 13px;
padding: 10px;
}

#selectedCategoryMsg {
font-size: 10px;
text-align: center;
width: 100%;
margin-left: 0;
margin-top: 5px;
}

.right-section {
flex-direction: row;
gap: 10px;
width: 100%;
}

#arrowButton {
width: 45px;
height: 45px;
}
}

/* Extra Small */
@media (max-width: 480px) {
#topBar {
padding: 10px;
}

#logo {
font-size: 16px;
}

#tagline {
display: none;
}

@media (max-width: 767px) {
.middle-section {
gap: 12px;
}

#parentSiteLogo {
font-size: 16px;
}

#parentTagline {
font-size: 10px;
}
}

/* Extra Small */
@media (max-width: 480px) {
#parentTagline {
display: none;
/* Hide on very small screens */
}

.action-buttons {
width: 100%;
justify-content: center;
}
}

.icon-btn {
padding: 8px 12px;
font-size: 12px;
flex: 1;
}
}

.save-btn {
flex: 1;
background: var(–primary-blue);
color: var(–text-white);
border: none;
padding: 12px 20px;
border-radius: 6px;
font-size: 14px;
font-weight: 600;
cursor: pointer;
transition: var(–transition);
}

.save-btn:hover {
background: var(–primary-blue-light);
transform: translateY(-2px);
box-shadow: 0 4px 12px rgba(74, 144, 226, 0.4);
}

.save-btn:active {
transform: translateY(0);
}

/* ========================================
ANIMATIONS
======================================== */
@keyframes fadeIn {
from {
opacity: 0;
}

to {
opacity: 1;
}
}

@keyframes slideUp {
from {
transform: translateY(30px);
opacity: 0;
}

to {
transform: translateY(0);
opacity: 1;
}
}
.header-nav-links {
list-style: none;
display: flex;
gap: 15px;
margin: 0;
padding: 0;
}
.header-nav-links a{
color: #cccccc !important;
}

document.getElementById(‘arrowButton’).addEventListener(‘click’, function() {
const categorySelect = document.getElementById(‘categorySelect’);
const selectedCategory = categorySelect.value;

if (selectedCategory) {

const newsNomadURL = `https://newsnomad.whatfinger.com/?category=${selectedCategory}`;
window.location.href = newsNomadURL;
} else {
alert(‘please select a category first.’);
}
});

window.addEventListener(“sfsi_functions_loaded”, function()
{
if (typeof sfsi_widget_set == “function”) {
sfsi_widget_set();
}
});

(function (node) {
var nrp = document.createElement(“script”);
nrp.type = “text/javascript”, nrp.async = true, nrp.src = “//a.ads.rmbl.ws/warp/588?r=” + Math.floor(Math.random() * 99999) + “”;
node.appendChild(nrp);
})(document.getElementsByTagName(“script”)[document.getElementsByTagName(“script”).length – 1].parentNode)


(function(w,q){w[q]=w[q]||[];w[q].push([“_mgc.load”])})(window,”_mgq”);

(function(w,d,s,i){w.ldAdInit=w.ldAdInit||[];w.ldAdInit.push({slot:10208507278638694,size:[0, 0],id:”ld-4686-9021″});if(!d.getElementById(i)){var j=d.createElement(s),p=d.getElementsByTagName(s)[0];j.async=true;j.src=”https://cdn2.decide.dev/_js/ajs.js”;j.id=i;p.parentNode.insertBefore(j,p);}})(window,document,”script”,”ld-ajs”);

(function (node) {
var nrp = document.createElement(“script”);
nrp.type = “text/javascript”, nrp.async = true, nrp.src = “//a.ads.rmbl.ws/warp/587?r=” + Math.floor(Math.random() * 99999) + “”;
node.appendChild(nrp);
})(document.getElementsByTagName(“script”)[document.getElementsByTagName(“script”).length – 1].parentNode)

Whatfinger Polls – main page

Polls are Open – Join in… Final tallies will be released when a poll is closed out…  so VOTE! Only one vote per IP address to keep the numbers clean. Sorry to those on shared IPs like in colleges and Starbucks etc.





Wellness: Dr McCullough’s company, see our links there and get a HUGE discount – Wellness Home

(function (node) {
var nrp = document.createElement(“script”);
nrp.type = “text/javascript”, nrp.async = true, nrp.src = “//a.ads.rmbl.ws/warp/590?r=” + Math.floor(Math.random() * 99999) + “”;
node.appendChild(nrp);
})(document.getElementsByTagName(“script”)[document.getElementsByTagName(“script”).length – 1].parentNode)

Site Directory of news and link sources in Alphabetical Order (direct links) Substacks are below this list 



Substacks of Interest

Other links of interest

     

    Log In

    Forgot password?

    Forgot password?

    Enter your account data and we will send you a link to reset your password.

    Your password reset link appears to be invalid or expired.

    Log in

    Privacy Policy

    Add to Collection

    No Collections

    Here you'll find all collections you've created before.