├── .gitattributes ├── Experimental └── SquaRE │ └── placeholder.txt ├── Extra ├── CSS │ ├── accents-config.css │ ├── regular.css │ └── root.css └── JS │ └── placeholder.txt ├── Fixes ├── Accents │ └── Main Steam Elements.css ├── Account Button Extras │ └── Status Menu.js ├── Bring Back Top Buttons │ └── Extra Buttons.js ├── Fix Location │ └── Settings UI │ │ └── SVGLocation.css ├── Fix Tooltips │ └── Fix Tooltips.js ├── Names in Settings Theme │ └── TITLETheme.js ├── Remover │ ├── Library UI │ │ └── Resizer Library.css │ └── Main UI │ │ ├── RemoveShadow.css │ │ └── RemoveUseless.css └── Return Old Style Tooltips │ └── ROST.css ├── General ├── Alternative Online Indicator │ └── Online Indicator View │ │ └── Status Indicator.css ├── Badges for Contributes │ └── Main Script.js ├── Fonts │ ├── Inter │ │ ├── Inter.css │ │ └── Text │ │ │ ├── Inter_28pt-Black.ttf │ │ │ ├── Inter_28pt-BlackItalic.ttf │ │ │ ├── Inter_28pt-Bold.ttf │ │ │ ├── Inter_28pt-BoldItalic.ttf │ │ │ ├── Inter_28pt-ExtraBold.ttf │ │ │ ├── Inter_28pt-ExtraBoldItalic.ttf │ │ │ ├── Inter_28pt-ExtraLight.ttf │ │ │ ├── Inter_28pt-ExtraLightItalic.ttf │ │ │ ├── Inter_28pt-Italic.ttf │ │ │ ├── Inter_28pt-Light.ttf │ │ │ ├── Inter_28pt-LightItalic.ttf │ │ │ ├── Inter_28pt-Medium.ttf │ │ │ ├── Inter_28pt-MediumItalic.ttf │ │ │ ├── Inter_28pt-Regular.ttf │ │ │ ├── Inter_28pt-SemiBold.ttf │ │ │ ├── Inter_28pt-SemiBoldItalic.ttf │ │ │ ├── Inter_28pt-Thin.ttf │ │ │ └── Inter_28pt-ThinItalic.ttf │ └── VK Sans │ │ ├── Display │ │ ├── vk_sans_display_bold.ttf │ │ ├── vk_sans_display_demibold.ttf │ │ ├── vk_sans_display_medium.ttf │ │ └── vk_sans_display_regular.ttf │ │ ├── Text │ │ ├── VKSansText13pt-Bold.ttf │ │ ├── VKSansText13pt-Demibold.ttf │ │ ├── VKSansText13pt-Light.ttf │ │ ├── VKSansText13pt-Medium.ttf │ │ ├── VKSansText13pt-Regular.ttf │ │ ├── VKSansText15pt-Bold.ttf │ │ ├── VKSansText15pt-Demibold.ttf │ │ ├── VKSansText15pt-Light.ttf │ │ ├── VKSansText15pt-Medium.ttf │ │ ├── VKSansText15pt-Regular.ttf │ │ ├── VKSansText16pt-Bold.ttf │ │ ├── VKSansText16pt-Demibold.ttf │ │ ├── VKSansText16pt-Light.ttf │ │ ├── VKSansText16pt-Medium.ttf │ │ ├── VKSansText16pt-Regular.ttf │ │ ├── VKSansText20pt-Bold.ttf │ │ ├── VKSansText20pt-Demibold.ttf │ │ ├── VKSansText20pt-Light.ttf │ │ ├── VKSansText20pt-Medium.ttf │ │ ├── VKSansText20pt-Regular.ttf │ │ ├── vk_sans_text_bold.ttf │ │ ├── vk_sans_text_demibold.ttf │ │ ├── vk_sans_text_light.ttf │ │ ├── vk_sans_text_medium.ttf │ │ └── vk_sans_text_regular.ttf │ │ └── VK Sans.css └── Rounding Avatars │ ├── Circle │ └── Main Avatars.css │ ├── Rounded Square │ └── Main Avatars.css │ └── Sharp │ └── Main Avatars.css ├── Hider ├── Balance Acc │ └── Balance.css ├── Blur Account │ └── Account.css ├── Library Items │ ├── Both.css │ ├── News.css │ └── Shelf.css └── Main Window Buttons │ ├── close-o.css │ ├── collapse-close.css │ ├── collapse-expand.css │ ├── collapse-o.css │ ├── expand-close.css │ ├── expand-o.css │ └── hide all.css ├── README.md ├── RefreshUI ├── Library UI │ └── Refresh Library │ │ ├── Flip Library.css │ │ ├── Flip Library.js │ │ ├── Game Main Buttons Location │ │ ├── compact-left.css │ │ ├── compact-right.css │ │ ├── leftside-all.css │ │ ├── leftside-links.css │ │ ├── leftside-play.css │ │ ├── rightside-all.css │ │ ├── rightside-links.css │ │ └── rightside-play.css │ │ ├── Library Code.css │ │ └── Library Sizes │ │ ├── Big.css │ │ ├── Default.css │ │ ├── Medium.css │ │ └── Small.css ├── Main UI │ └── Refresh Header │ │ ├── Account Style │ │ ├── Hide Profile Button.css │ │ └── Profile Buttons in Account Menu.js │ │ ├── Another Header Script.js │ │ ├── Bottom URL Bar.css │ │ ├── Compact Buttons │ │ ├── Compact Buttons.css │ │ └── Compact Buttons.js │ │ ├── Fancy Bottom.css │ │ ├── Header Code.css │ │ ├── Header Script.js │ │ ├── Reorder Buttons.css │ │ ├── Top Bar Reverse.css │ │ └── Top URL Bar.css └── Menu UI │ └── Refresh Menu │ ├── Compact.css │ └── Spacious.css ├── github ├── features │ ├── extrabuttons.png │ └── hideprofile.png ├── logo │ └── newnevkologo.png └── screenshots │ ├── newscreenshotlibrary.png │ └── rewritescreenshot.png ├── skin.json └── webkit.js /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotFelixan/NEVKO-UI/HEAD/.gitattributes -------------------------------------------------------------------------------- /Experimental/SquaRE/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Extra/CSS/accents-config.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotFelixan/NEVKO-UI/HEAD/Extra/CSS/accents-config.css -------------------------------------------------------------------------------- /Extra/CSS/regular.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Extra/CSS/root.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotFelixan/NEVKO-UI/HEAD/Extra/CSS/root.css -------------------------------------------------------------------------------- /Extra/JS/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Fixes/Accents/Main Steam Elements.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotFelixan/NEVKO-UI/HEAD/Fixes/Accents/Main Steam Elements.css -------------------------------------------------------------------------------- /Fixes/Account Button Extras/Status Menu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotFelixan/NEVKO-UI/HEAD/Fixes/Account Button Extras/Status Menu.js -------------------------------------------------------------------------------- /Fixes/Bring Back Top Buttons/Extra Buttons.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Fixes/Fix Location/Settings UI/SVGLocation.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotFelixan/NEVKO-UI/HEAD/Fixes/Fix Location/Settings UI/SVGLocation.css -------------------------------------------------------------------------------- /Fixes/Fix Tooltips/Fix Tooltips.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Fixes/Names in Settings Theme/TITLETheme.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotFelixan/NEVKO-UI/HEAD/Fixes/Names in Settings Theme/TITLETheme.js -------------------------------------------------------------------------------- /Fixes/Remover/Library UI/Resizer Library.css: -------------------------------------------------------------------------------- 1 | ._276E6ijBpjMA2_iTxNhhjc._2g5K_hJWc7jVo81zuejhk2 { 2 | display: none !important; 3 | } -------------------------------------------------------------------------------- /Fixes/Remover/Main UI/RemoveShadow.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotFelixan/NEVKO-UI/HEAD/Fixes/Remover/Main UI/RemoveShadow.css -------------------------------------------------------------------------------- /Fixes/Remover/Main UI/RemoveUseless.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotFelixan/NEVKO-UI/HEAD/Fixes/Remover/Main UI/RemoveUseless.css -------------------------------------------------------------------------------- /Fixes/Return Old Style Tooltips/ROST.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotFelixan/NEVKO-UI/HEAD/Fixes/Return Old Style Tooltips/ROST.css -------------------------------------------------------------------------------- /General/Alternative Online Indicator/Online Indicator View/Status Indicator.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotFelixan/NEVKO-UI/HEAD/General/Alternative Online Indicator/Online Indicator View/Status Indicator.css -------------------------------------------------------------------------------- /General/Badges for Contributes/Main Script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotFelixan/NEVKO-UI/HEAD/General/Badges for Contributes/Main Script.js -------------------------------------------------------------------------------- /General/Fonts/Inter/Inter.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotFelixan/NEVKO-UI/HEAD/General/Fonts/Inter/Inter.css -------------------------------------------------------------------------------- /General/Fonts/Inter/Text/Inter_28pt-Black.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotFelixan/NEVKO-UI/HEAD/General/Fonts/Inter/Text/Inter_28pt-Black.ttf -------------------------------------------------------------------------------- /General/Fonts/Inter/Text/Inter_28pt-BlackItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotFelixan/NEVKO-UI/HEAD/General/Fonts/Inter/Text/Inter_28pt-BlackItalic.ttf -------------------------------------------------------------------------------- /General/Fonts/Inter/Text/Inter_28pt-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotFelixan/NEVKO-UI/HEAD/General/Fonts/Inter/Text/Inter_28pt-Bold.ttf -------------------------------------------------------------------------------- /General/Fonts/Inter/Text/Inter_28pt-BoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotFelixan/NEVKO-UI/HEAD/General/Fonts/Inter/Text/Inter_28pt-BoldItalic.ttf -------------------------------------------------------------------------------- /General/Fonts/Inter/Text/Inter_28pt-ExtraBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotFelixan/NEVKO-UI/HEAD/General/Fonts/Inter/Text/Inter_28pt-ExtraBold.ttf -------------------------------------------------------------------------------- /General/Fonts/Inter/Text/Inter_28pt-ExtraBoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotFelixan/NEVKO-UI/HEAD/General/Fonts/Inter/Text/Inter_28pt-ExtraBoldItalic.ttf -------------------------------------------------------------------------------- /General/Fonts/Inter/Text/Inter_28pt-ExtraLight.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotFelixan/NEVKO-UI/HEAD/General/Fonts/Inter/Text/Inter_28pt-ExtraLight.ttf -------------------------------------------------------------------------------- /General/Fonts/Inter/Text/Inter_28pt-ExtraLightItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotFelixan/NEVKO-UI/HEAD/General/Fonts/Inter/Text/Inter_28pt-ExtraLightItalic.ttf -------------------------------------------------------------------------------- /General/Fonts/Inter/Text/Inter_28pt-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotFelixan/NEVKO-UI/HEAD/General/Fonts/Inter/Text/Inter_28pt-Italic.ttf -------------------------------------------------------------------------------- /General/Fonts/Inter/Text/Inter_28pt-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotFelixan/NEVKO-UI/HEAD/General/Fonts/Inter/Text/Inter_28pt-Light.ttf -------------------------------------------------------------------------------- /General/Fonts/Inter/Text/Inter_28pt-LightItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotFelixan/NEVKO-UI/HEAD/General/Fonts/Inter/Text/Inter_28pt-LightItalic.ttf -------------------------------------------------------------------------------- /General/Fonts/Inter/Text/Inter_28pt-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotFelixan/NEVKO-UI/HEAD/General/Fonts/Inter/Text/Inter_28pt-Medium.ttf -------------------------------------------------------------------------------- /General/Fonts/Inter/Text/Inter_28pt-MediumItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotFelixan/NEVKO-UI/HEAD/General/Fonts/Inter/Text/Inter_28pt-MediumItalic.ttf -------------------------------------------------------------------------------- /General/Fonts/Inter/Text/Inter_28pt-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotFelixan/NEVKO-UI/HEAD/General/Fonts/Inter/Text/Inter_28pt-Regular.ttf -------------------------------------------------------------------------------- /General/Fonts/Inter/Text/Inter_28pt-SemiBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotFelixan/NEVKO-UI/HEAD/General/Fonts/Inter/Text/Inter_28pt-SemiBold.ttf -------------------------------------------------------------------------------- /General/Fonts/Inter/Text/Inter_28pt-SemiBoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotFelixan/NEVKO-UI/HEAD/General/Fonts/Inter/Text/Inter_28pt-SemiBoldItalic.ttf -------------------------------------------------------------------------------- /General/Fonts/Inter/Text/Inter_28pt-Thin.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotFelixan/NEVKO-UI/HEAD/General/Fonts/Inter/Text/Inter_28pt-Thin.ttf -------------------------------------------------------------------------------- /General/Fonts/Inter/Text/Inter_28pt-ThinItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotFelixan/NEVKO-UI/HEAD/General/Fonts/Inter/Text/Inter_28pt-ThinItalic.ttf -------------------------------------------------------------------------------- /General/Fonts/VK Sans/Display/vk_sans_display_bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotFelixan/NEVKO-UI/HEAD/General/Fonts/VK Sans/Display/vk_sans_display_bold.ttf -------------------------------------------------------------------------------- /General/Fonts/VK Sans/Display/vk_sans_display_demibold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotFelixan/NEVKO-UI/HEAD/General/Fonts/VK Sans/Display/vk_sans_display_demibold.ttf -------------------------------------------------------------------------------- /General/Fonts/VK Sans/Display/vk_sans_display_medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotFelixan/NEVKO-UI/HEAD/General/Fonts/VK Sans/Display/vk_sans_display_medium.ttf -------------------------------------------------------------------------------- /General/Fonts/VK Sans/Display/vk_sans_display_regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotFelixan/NEVKO-UI/HEAD/General/Fonts/VK Sans/Display/vk_sans_display_regular.ttf -------------------------------------------------------------------------------- /General/Fonts/VK Sans/Text/VKSansText13pt-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotFelixan/NEVKO-UI/HEAD/General/Fonts/VK Sans/Text/VKSansText13pt-Bold.ttf -------------------------------------------------------------------------------- /General/Fonts/VK Sans/Text/VKSansText13pt-Demibold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotFelixan/NEVKO-UI/HEAD/General/Fonts/VK Sans/Text/VKSansText13pt-Demibold.ttf -------------------------------------------------------------------------------- /General/Fonts/VK Sans/Text/VKSansText13pt-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotFelixan/NEVKO-UI/HEAD/General/Fonts/VK Sans/Text/VKSansText13pt-Light.ttf -------------------------------------------------------------------------------- /General/Fonts/VK Sans/Text/VKSansText13pt-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotFelixan/NEVKO-UI/HEAD/General/Fonts/VK Sans/Text/VKSansText13pt-Medium.ttf -------------------------------------------------------------------------------- /General/Fonts/VK Sans/Text/VKSansText13pt-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotFelixan/NEVKO-UI/HEAD/General/Fonts/VK Sans/Text/VKSansText13pt-Regular.ttf -------------------------------------------------------------------------------- /General/Fonts/VK Sans/Text/VKSansText15pt-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotFelixan/NEVKO-UI/HEAD/General/Fonts/VK Sans/Text/VKSansText15pt-Bold.ttf -------------------------------------------------------------------------------- /General/Fonts/VK Sans/Text/VKSansText15pt-Demibold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotFelixan/NEVKO-UI/HEAD/General/Fonts/VK Sans/Text/VKSansText15pt-Demibold.ttf -------------------------------------------------------------------------------- /General/Fonts/VK Sans/Text/VKSansText15pt-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotFelixan/NEVKO-UI/HEAD/General/Fonts/VK Sans/Text/VKSansText15pt-Light.ttf -------------------------------------------------------------------------------- /General/Fonts/VK Sans/Text/VKSansText15pt-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotFelixan/NEVKO-UI/HEAD/General/Fonts/VK Sans/Text/VKSansText15pt-Medium.ttf -------------------------------------------------------------------------------- /General/Fonts/VK Sans/Text/VKSansText15pt-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotFelixan/NEVKO-UI/HEAD/General/Fonts/VK Sans/Text/VKSansText15pt-Regular.ttf -------------------------------------------------------------------------------- /General/Fonts/VK Sans/Text/VKSansText16pt-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotFelixan/NEVKO-UI/HEAD/General/Fonts/VK Sans/Text/VKSansText16pt-Bold.ttf -------------------------------------------------------------------------------- /General/Fonts/VK Sans/Text/VKSansText16pt-Demibold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotFelixan/NEVKO-UI/HEAD/General/Fonts/VK Sans/Text/VKSansText16pt-Demibold.ttf -------------------------------------------------------------------------------- /General/Fonts/VK Sans/Text/VKSansText16pt-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotFelixan/NEVKO-UI/HEAD/General/Fonts/VK Sans/Text/VKSansText16pt-Light.ttf -------------------------------------------------------------------------------- /General/Fonts/VK Sans/Text/VKSansText16pt-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotFelixan/NEVKO-UI/HEAD/General/Fonts/VK Sans/Text/VKSansText16pt-Medium.ttf -------------------------------------------------------------------------------- /General/Fonts/VK Sans/Text/VKSansText16pt-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotFelixan/NEVKO-UI/HEAD/General/Fonts/VK Sans/Text/VKSansText16pt-Regular.ttf -------------------------------------------------------------------------------- /General/Fonts/VK Sans/Text/VKSansText20pt-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotFelixan/NEVKO-UI/HEAD/General/Fonts/VK Sans/Text/VKSansText20pt-Bold.ttf -------------------------------------------------------------------------------- /General/Fonts/VK Sans/Text/VKSansText20pt-Demibold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotFelixan/NEVKO-UI/HEAD/General/Fonts/VK Sans/Text/VKSansText20pt-Demibold.ttf -------------------------------------------------------------------------------- /General/Fonts/VK Sans/Text/VKSansText20pt-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotFelixan/NEVKO-UI/HEAD/General/Fonts/VK Sans/Text/VKSansText20pt-Light.ttf -------------------------------------------------------------------------------- /General/Fonts/VK Sans/Text/VKSansText20pt-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotFelixan/NEVKO-UI/HEAD/General/Fonts/VK Sans/Text/VKSansText20pt-Medium.ttf -------------------------------------------------------------------------------- /General/Fonts/VK Sans/Text/VKSansText20pt-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotFelixan/NEVKO-UI/HEAD/General/Fonts/VK Sans/Text/VKSansText20pt-Regular.ttf -------------------------------------------------------------------------------- /General/Fonts/VK Sans/Text/vk_sans_text_bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotFelixan/NEVKO-UI/HEAD/General/Fonts/VK Sans/Text/vk_sans_text_bold.ttf -------------------------------------------------------------------------------- /General/Fonts/VK Sans/Text/vk_sans_text_demibold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotFelixan/NEVKO-UI/HEAD/General/Fonts/VK Sans/Text/vk_sans_text_demibold.ttf -------------------------------------------------------------------------------- /General/Fonts/VK Sans/Text/vk_sans_text_light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotFelixan/NEVKO-UI/HEAD/General/Fonts/VK Sans/Text/vk_sans_text_light.ttf -------------------------------------------------------------------------------- /General/Fonts/VK Sans/Text/vk_sans_text_medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotFelixan/NEVKO-UI/HEAD/General/Fonts/VK Sans/Text/vk_sans_text_medium.ttf -------------------------------------------------------------------------------- /General/Fonts/VK Sans/Text/vk_sans_text_regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotFelixan/NEVKO-UI/HEAD/General/Fonts/VK Sans/Text/vk_sans_text_regular.ttf -------------------------------------------------------------------------------- /General/Fonts/VK Sans/VK Sans.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotFelixan/NEVKO-UI/HEAD/General/Fonts/VK Sans/VK Sans.css -------------------------------------------------------------------------------- /General/Rounding Avatars/Circle/Main Avatars.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotFelixan/NEVKO-UI/HEAD/General/Rounding Avatars/Circle/Main Avatars.css -------------------------------------------------------------------------------- /General/Rounding Avatars/Rounded Square/Main Avatars.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotFelixan/NEVKO-UI/HEAD/General/Rounding Avatars/Rounded Square/Main Avatars.css -------------------------------------------------------------------------------- /General/Rounding Avatars/Sharp/Main Avatars.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotFelixan/NEVKO-UI/HEAD/General/Rounding Avatars/Sharp/Main Avatars.css -------------------------------------------------------------------------------- /Hider/Balance Acc/Balance.css: -------------------------------------------------------------------------------- 1 | /* Hide Balance */ 2 | ._3yD46y5pd3zOGR7CzKs0mC ._2jphjrSifC6orDT4g_7Wd { 3 | display: none !important; 4 | } -------------------------------------------------------------------------------- /Hider/Blur Account/Account.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotFelixan/NEVKO-UI/HEAD/Hider/Blur Account/Account.css -------------------------------------------------------------------------------- /Hider/Library Items/Both.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotFelixan/NEVKO-UI/HEAD/Hider/Library Items/Both.css -------------------------------------------------------------------------------- /Hider/Library Items/News.css: -------------------------------------------------------------------------------- 1 | ._17uEBe5Ri8TMsnfELvs8-N { 2 | display: none; 3 | } -------------------------------------------------------------------------------- /Hider/Library Items/Shelf.css: -------------------------------------------------------------------------------- 1 | .DesktopUI ._3SkuN_ykQuWGF94fclHdhJ { 2 | display: none; 3 | } -------------------------------------------------------------------------------- /Hider/Main Window Buttons/close-o.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotFelixan/NEVKO-UI/HEAD/Hider/Main Window Buttons/close-o.css -------------------------------------------------------------------------------- /Hider/Main Window Buttons/collapse-close.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotFelixan/NEVKO-UI/HEAD/Hider/Main Window Buttons/collapse-close.css -------------------------------------------------------------------------------- /Hider/Main Window Buttons/collapse-expand.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotFelixan/NEVKO-UI/HEAD/Hider/Main Window Buttons/collapse-expand.css -------------------------------------------------------------------------------- /Hider/Main Window Buttons/collapse-o.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotFelixan/NEVKO-UI/HEAD/Hider/Main Window Buttons/collapse-o.css -------------------------------------------------------------------------------- /Hider/Main Window Buttons/expand-close.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotFelixan/NEVKO-UI/HEAD/Hider/Main Window Buttons/expand-close.css -------------------------------------------------------------------------------- /Hider/Main Window Buttons/expand-o.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotFelixan/NEVKO-UI/HEAD/Hider/Main Window Buttons/expand-o.css -------------------------------------------------------------------------------- /Hider/Main Window Buttons/hide all.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotFelixan/NEVKO-UI/HEAD/Hider/Main Window Buttons/hide all.css -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotFelixan/NEVKO-UI/HEAD/README.md -------------------------------------------------------------------------------- /RefreshUI/Library UI/Refresh Library/Flip Library.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotFelixan/NEVKO-UI/HEAD/RefreshUI/Library UI/Refresh Library/Flip Library.css -------------------------------------------------------------------------------- /RefreshUI/Library UI/Refresh Library/Flip Library.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /RefreshUI/Library UI/Refresh Library/Game Main Buttons Location/compact-left.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotFelixan/NEVKO-UI/HEAD/RefreshUI/Library UI/Refresh Library/Game Main Buttons Location/compact-left.css -------------------------------------------------------------------------------- /RefreshUI/Library UI/Refresh Library/Game Main Buttons Location/compact-right.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotFelixan/NEVKO-UI/HEAD/RefreshUI/Library UI/Refresh Library/Game Main Buttons Location/compact-right.css -------------------------------------------------------------------------------- /RefreshUI/Library UI/Refresh Library/Game Main Buttons Location/leftside-all.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotFelixan/NEVKO-UI/HEAD/RefreshUI/Library UI/Refresh Library/Game Main Buttons Location/leftside-all.css -------------------------------------------------------------------------------- /RefreshUI/Library UI/Refresh Library/Game Main Buttons Location/leftside-links.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotFelixan/NEVKO-UI/HEAD/RefreshUI/Library UI/Refresh Library/Game Main Buttons Location/leftside-links.css -------------------------------------------------------------------------------- /RefreshUI/Library UI/Refresh Library/Game Main Buttons Location/leftside-play.css: -------------------------------------------------------------------------------- 1 | ._1FnJ6dPuknQFQ2RTpKTI16 { 2 | margin-left: unset !important; 3 | } -------------------------------------------------------------------------------- /RefreshUI/Library UI/Refresh Library/Game Main Buttons Location/rightside-all.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotFelixan/NEVKO-UI/HEAD/RefreshUI/Library UI/Refresh Library/Game Main Buttons Location/rightside-all.css -------------------------------------------------------------------------------- /RefreshUI/Library UI/Refresh Library/Game Main Buttons Location/rightside-links.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotFelixan/NEVKO-UI/HEAD/RefreshUI/Library UI/Refresh Library/Game Main Buttons Location/rightside-links.css -------------------------------------------------------------------------------- /RefreshUI/Library UI/Refresh Library/Game Main Buttons Location/rightside-play.css: -------------------------------------------------------------------------------- 1 | ._1FnJ6dPuknQFQ2RTpKTI16 { 2 | margin-right: unset !important; 3 | } -------------------------------------------------------------------------------- /RefreshUI/Library UI/Refresh Library/Library Code.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotFelixan/NEVKO-UI/HEAD/RefreshUI/Library UI/Refresh Library/Library Code.css -------------------------------------------------------------------------------- /RefreshUI/Library UI/Refresh Library/Library Sizes/Big.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotFelixan/NEVKO-UI/HEAD/RefreshUI/Library UI/Refresh Library/Library Sizes/Big.css -------------------------------------------------------------------------------- /RefreshUI/Library UI/Refresh Library/Library Sizes/Default.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotFelixan/NEVKO-UI/HEAD/RefreshUI/Library UI/Refresh Library/Library Sizes/Default.css -------------------------------------------------------------------------------- /RefreshUI/Library UI/Refresh Library/Library Sizes/Medium.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotFelixan/NEVKO-UI/HEAD/RefreshUI/Library UI/Refresh Library/Library Sizes/Medium.css -------------------------------------------------------------------------------- /RefreshUI/Library UI/Refresh Library/Library Sizes/Small.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotFelixan/NEVKO-UI/HEAD/RefreshUI/Library UI/Refresh Library/Library Sizes/Small.css -------------------------------------------------------------------------------- /RefreshUI/Main UI/Refresh Header/Account Style/Hide Profile Button.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotFelixan/NEVKO-UI/HEAD/RefreshUI/Main UI/Refresh Header/Account Style/Hide Profile Button.css -------------------------------------------------------------------------------- /RefreshUI/Main UI/Refresh Header/Account Style/Profile Buttons in Account Menu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotFelixan/NEVKO-UI/HEAD/RefreshUI/Main UI/Refresh Header/Account Style/Profile Buttons in Account Menu.js -------------------------------------------------------------------------------- /RefreshUI/Main UI/Refresh Header/Another Header Script.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /RefreshUI/Main UI/Refresh Header/Bottom URL Bar.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotFelixan/NEVKO-UI/HEAD/RefreshUI/Main UI/Refresh Header/Bottom URL Bar.css -------------------------------------------------------------------------------- /RefreshUI/Main UI/Refresh Header/Compact Buttons/Compact Buttons.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotFelixan/NEVKO-UI/HEAD/RefreshUI/Main UI/Refresh Header/Compact Buttons/Compact Buttons.css -------------------------------------------------------------------------------- /RefreshUI/Main UI/Refresh Header/Compact Buttons/Compact Buttons.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotFelixan/NEVKO-UI/HEAD/RefreshUI/Main UI/Refresh Header/Compact Buttons/Compact Buttons.js -------------------------------------------------------------------------------- /RefreshUI/Main UI/Refresh Header/Fancy Bottom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotFelixan/NEVKO-UI/HEAD/RefreshUI/Main UI/Refresh Header/Fancy Bottom.css -------------------------------------------------------------------------------- /RefreshUI/Main UI/Refresh Header/Header Code.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotFelixan/NEVKO-UI/HEAD/RefreshUI/Main UI/Refresh Header/Header Code.css -------------------------------------------------------------------------------- /RefreshUI/Main UI/Refresh Header/Header Script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotFelixan/NEVKO-UI/HEAD/RefreshUI/Main UI/Refresh Header/Header Script.js -------------------------------------------------------------------------------- /RefreshUI/Main UI/Refresh Header/Reorder Buttons.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotFelixan/NEVKO-UI/HEAD/RefreshUI/Main UI/Refresh Header/Reorder Buttons.css -------------------------------------------------------------------------------- /RefreshUI/Main UI/Refresh Header/Top Bar Reverse.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotFelixan/NEVKO-UI/HEAD/RefreshUI/Main UI/Refresh Header/Top Bar Reverse.css -------------------------------------------------------------------------------- /RefreshUI/Main UI/Refresh Header/Top URL Bar.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotFelixan/NEVKO-UI/HEAD/RefreshUI/Main UI/Refresh Header/Top URL Bar.css -------------------------------------------------------------------------------- /RefreshUI/Menu UI/Refresh Menu/Compact.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /RefreshUI/Menu UI/Refresh Menu/Spacious.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotFelixan/NEVKO-UI/HEAD/RefreshUI/Menu UI/Refresh Menu/Spacious.css -------------------------------------------------------------------------------- /github/features/extrabuttons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotFelixan/NEVKO-UI/HEAD/github/features/extrabuttons.png -------------------------------------------------------------------------------- /github/features/hideprofile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotFelixan/NEVKO-UI/HEAD/github/features/hideprofile.png -------------------------------------------------------------------------------- /github/logo/newnevkologo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotFelixan/NEVKO-UI/HEAD/github/logo/newnevkologo.png -------------------------------------------------------------------------------- /github/screenshots/newscreenshotlibrary.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotFelixan/NEVKO-UI/HEAD/github/screenshots/newscreenshotlibrary.png -------------------------------------------------------------------------------- /github/screenshots/rewritescreenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotFelixan/NEVKO-UI/HEAD/github/screenshots/rewritescreenshot.png -------------------------------------------------------------------------------- /skin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotFelixan/NEVKO-UI/HEAD/skin.json -------------------------------------------------------------------------------- /webkit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotFelixan/NEVKO-UI/HEAD/webkit.js --------------------------------------------------------------------------------