A clean and minimal UI for SoFi.com. It removes the boxes from view, giving you a clean view.
SoFi Enhanced by sodastereo
Details
Authorsodastereo
LicenseNo License
CategorySoFi
Created
Updated
Size2.3 kB
Statistics
Learn how we calculate statistics in the FAQ.
Failed to fetch stats.
Description
Notes
Userstyle doesn't have notes.Source code
/* ==UserStyle==
@name SoFi Enhanced - 7/6/2022, 10:44:47 AM
@namespace https://github.com/sodastereo/sofi-enhanced
@version 1.0.0
@description A minimal sofi site
@author sodastereo
==/UserStyle== */
@-moz-document url-prefix("https://www.sofi.com/member-home/"),
url-prefix("https://www.sofi.com"),
url-prefix("https://sofi.com"),
domain("sofi.com") {
/*variables. change these */
:root {
--visible: none;
}
/*removes the credit rating box */
.DesktopWrapper-sc-1nxe7wn-0 > div:nth-child(1) > div:nth-child(2) > div:nth-child(1) > div:nth-child(1) > a:nth-child(1) {
display: var(--visible);
}
/* removes the student loan box */
.DesktopWrapper-sc-1nxe7wn-0 > div:nth-child(1) > div:nth-child(3) > div:nth-child(1) > div:nth-child(1) > a:nth-child(1) {
display: var(--visible);
}
/* removes the personal loan box */
div.StyledAccountColumnContainer-sc-1wyculg-0:nth-child(2) > div:nth-child(2) > div:nth-child(1) > div:nth-child(1) > a:nth-child(1) {
display: var(--visible);
}
/* removes the investment box */
.DesktopWrapper-sc-1nxe7wn-0 > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > a:nth-child(1) {
display: var(--visible);
}
/* removes the mortgage box */
div.StyledAccountColumnContainer-sc-1wyculg-0:nth-child(2) > div:nth-child(3) > div:nth-child(1) > div:nth-child(1) > a:nth-child(1) {
display: var(--visible);
}
/* removes a ghost box that may appear under rating box on chrome */
div.StyledBG-sc-1go9my9-0.jubUnV.default-bg > div > div.sc-cTAqQK.dFLjEu > div.DesktopWrapper-sc-1nxe7wn-0.gsHpsq > div:nth-child(1) > div:nth-child(2) > div > div.StyledTitleContainer-sc-bh72qi-0.eeiwdh {
display: var(--visible);
}
/* removes a ghost box that may appear under credit card box on chrome */
div.StyledBG-sc-1go9my9-0.jubUnV.default-bg > div > div.sc-cTAqQK.dFLjEu > div.DesktopWrapper-sc-1nxe7wn-0.gsHpsq > div:nth-child(2) > div:nth-child(4) > div {
display: var(--visible);
}
/* removes credit card app box */
div.StyledAccountColumnContainer-sc-1wyculg-0:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > a:nth-child(1) {
display: var(--visible);
}
}