my personal site
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Update style.css

+14
+14
style.css
··· 916 916 align-items: center; 917 917 justify-content: center; 918 918 } 919 + .access-radio:hover:not(.selected):not(:active):not(:focus) { 920 + background: var(--nav-active-bg); 921 + color: var(--link-hover-color); 922 + box-shadow: 0 4px 16px rgba(0,0,0,0.10); 923 + outline: none; 924 + } 925 + .dark-theme .access-radio:hover:not(.selected):not(:active):not(:focus) { 926 + background: var(--nav-active-bg); 927 + color: #fff; 928 + } 929 + .high-contrast .access-radio:hover:not(.selected):not(:active):not(:focus) { 930 + background: #222 !important; 931 + color: #00ffff !important; 932 + } 919 933 .access-radio.selected, .access-radio:active, .access-radio:focus { 920 934 background: var(--nav-active-bg); 921 935 color: var(--link-hover-color);