├── .github ├── ISSUE_TEMPLATE │ ├── BUG-REPORT.yml │ ├── FEATURE-REQUEST.yml │ └── config.yml ├── LICENSE-3rdParty.md └── assets │ ├── banner.png │ ├── concepts │ ├── conceptLibGamepage.png │ ├── conceptLibHome.png │ ├── conceptStoreGamepage.png │ └── conceptStorePage.png │ ├── logo.png │ └── preview │ ├── communityPage.png │ ├── friendAndChat.png │ ├── libGamepage.png │ ├── libHome.png │ ├── preview.png │ ├── storeCart.png │ ├── storeGamepage.png │ ├── storeNews.png │ ├── storePage.png │ └── storeWishlist.png ├── LICENSE ├── README.md ├── options ├── community │ ├── profilePagesHeader.css │ └── vacBan │ │ ├── all.css │ │ └── me.css ├── fonts │ ├── arial.css │ ├── beVietnamPro.css │ ├── gluten.css │ ├── montserrat.css │ ├── quicksand.css │ ├── roboto.css │ ├── sourceCodePro.css │ └── ubuntu.css ├── general │ ├── achievementNotifaction.css │ ├── alwaysShowSidebar.css │ ├── friendIcon.css │ ├── navigationButtons.css │ ├── showSidebarOnHover.css │ ├── systemAccent.css │ ├── userpannel │ │ ├── buttons │ │ │ ├── bpm.css │ │ │ ├── friendList.css │ │ │ ├── news.css │ │ │ ├── notification.css │ │ │ └── steamVr.css │ │ ├── userpannel.css │ │ └── userpannel.js │ ├── walletBalance.css │ └── windowControls │ │ ├── hide.css │ │ └── showOnHover.css ├── library │ ├── bannerPosition │ │ ├── left.css │ │ └── right.css │ ├── gamepage │ │ ├── alwaysShowGameInfo.css │ │ ├── biggerBanner.css │ │ ├── customArtwork.css │ │ ├── gameInfoArtwork.css │ │ └── sidebarLeft.css │ └── home │ │ ├── addShelf.css │ │ ├── shinyEffect.css │ │ ├── undarkUninstalled.css │ │ └── whatsNew │ │ ├── compact.css │ │ └── hide.css ├── settings.css └── store │ ├── cart │ ├── digidalProductInfo.css │ ├── followCreators.css │ └── recommendations.css │ ├── footer.css │ ├── gamepage │ ├── broadcast.css │ ├── infoSidebarLeft.css │ └── writeReview.css │ ├── pointshop │ └── header.css │ ├── urlBar.css │ └── wishlist │ ├── wishlistGrid.css │ └── wishlistGrid.js ├── skin.json └── src ├── css ├── bigpicture.custom.css ├── custom │ ├── animatedAvatar.css │ ├── animatedAvatar.js │ ├── custom.css │ ├── custom.js │ ├── customBackground.css │ ├── customBackground.js │ ├── data.json │ ├── gradientName.css │ └── gradientName.js ├── friends.custom.css ├── friends │ ├── chat.css │ ├── groupChat.css │ └── list.css ├── inputs │ ├── button.css │ ├── checkbox.css │ ├── inputs.css │ ├── radio.css │ ├── radiogroup.css │ └── range.css ├── libraryroot.custom.css ├── menu.custom.css ├── notifications.custom.css ├── overlay.custom.css ├── overlay │ ├── achievements.css │ ├── clock.css │ ├── controllerSettings.css │ ├── discussions.css │ ├── dlc.css │ ├── friends.css │ ├── gameOverview.css │ ├── guides.css │ ├── notes.css │ ├── recording.css │ ├── screenshotManager.css │ ├── settings.css │ └── webBrowser.css ├── plugins │ ├── augmentedSteam.css │ ├── dwmx.css │ └── extendium │ │ ├── plugins.css │ │ ├── protondb.css │ │ └── steamdb.css ├── regular.css ├── root.css ├── startupLogin.custom.css ├── steam │ ├── achievementsModal.css │ ├── downloadPage.css │ ├── gamepage.css │ ├── libHome.css │ ├── millenniumSettings.css │ ├── modalDialogPopup.css │ ├── newsModal.css │ ├── screenshotManager.css │ ├── settings.css │ ├── sidebar.css │ ├── soundtrackPage.css │ └── titlebar.css ├── webkit.css └── webkit │ ├── community │ └── profile │ │ ├── awards.css │ │ └── user.css │ └── store │ ├── agecheck.css │ ├── bundleInfo.css │ ├── cart.css │ ├── checkout.css │ ├── game.css │ ├── home.css │ ├── news.css │ ├── pointsshop.css │ ├── search.css │ ├── stats.css │ └── wishlist.css ├── icons ├── fluent │ ├── _font │ │ ├── FluentSystemIcons-Filled.ttf │ │ ├── FluentSystemIcons-Filled.woff │ │ ├── FluentSystemIcons-Filled.woff2 │ │ ├── FluentSystemIcons-Regular.ttf │ │ ├── FluentSystemIcons-Regular.woff │ │ ├── FluentSystemIcons-Regular.woff2 │ │ └── LICENSE-3rdParty.md │ └── fluent.css ├── logo.svg ├── platform │ ├── linux.svg │ └── windows.svg └── play.svg └── js ├── friends.custom.js ├── libraryroot.custom.js ├── notifications.custom.js └── webkit.js /.github/ISSUE_TEMPLATE/BUG-REPORT.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceTheme/Steam/HEAD/.github/ISSUE_TEMPLATE/BUG-REPORT.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/FEATURE-REQUEST.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceTheme/Steam/HEAD/.github/ISSUE_TEMPLATE/FEATURE-REQUEST.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceTheme/Steam/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/LICENSE-3rdParty.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceTheme/Steam/HEAD/.github/LICENSE-3rdParty.md -------------------------------------------------------------------------------- /.github/assets/banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceTheme/Steam/HEAD/.github/assets/banner.png -------------------------------------------------------------------------------- /.github/assets/concepts/conceptLibGamepage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceTheme/Steam/HEAD/.github/assets/concepts/conceptLibGamepage.png -------------------------------------------------------------------------------- /.github/assets/concepts/conceptLibHome.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceTheme/Steam/HEAD/.github/assets/concepts/conceptLibHome.png -------------------------------------------------------------------------------- /.github/assets/concepts/conceptStoreGamepage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceTheme/Steam/HEAD/.github/assets/concepts/conceptStoreGamepage.png -------------------------------------------------------------------------------- /.github/assets/concepts/conceptStorePage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceTheme/Steam/HEAD/.github/assets/concepts/conceptStorePage.png -------------------------------------------------------------------------------- /.github/assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceTheme/Steam/HEAD/.github/assets/logo.png -------------------------------------------------------------------------------- /.github/assets/preview/communityPage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceTheme/Steam/HEAD/.github/assets/preview/communityPage.png -------------------------------------------------------------------------------- /.github/assets/preview/friendAndChat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceTheme/Steam/HEAD/.github/assets/preview/friendAndChat.png -------------------------------------------------------------------------------- /.github/assets/preview/libGamepage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceTheme/Steam/HEAD/.github/assets/preview/libGamepage.png -------------------------------------------------------------------------------- /.github/assets/preview/libHome.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceTheme/Steam/HEAD/.github/assets/preview/libHome.png -------------------------------------------------------------------------------- /.github/assets/preview/preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceTheme/Steam/HEAD/.github/assets/preview/preview.png -------------------------------------------------------------------------------- /.github/assets/preview/storeCart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceTheme/Steam/HEAD/.github/assets/preview/storeCart.png -------------------------------------------------------------------------------- /.github/assets/preview/storeGamepage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceTheme/Steam/HEAD/.github/assets/preview/storeGamepage.png -------------------------------------------------------------------------------- /.github/assets/preview/storeNews.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceTheme/Steam/HEAD/.github/assets/preview/storeNews.png -------------------------------------------------------------------------------- /.github/assets/preview/storePage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceTheme/Steam/HEAD/.github/assets/preview/storePage.png -------------------------------------------------------------------------------- /.github/assets/preview/storeWishlist.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceTheme/Steam/HEAD/.github/assets/preview/storeWishlist.png -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceTheme/Steam/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceTheme/Steam/HEAD/README.md -------------------------------------------------------------------------------- /options/community/profilePagesHeader.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceTheme/Steam/HEAD/options/community/profilePagesHeader.css -------------------------------------------------------------------------------- /options/community/vacBan/all.css: -------------------------------------------------------------------------------- 1 | .profile_ban_status { 2 | display: none; 3 | } -------------------------------------------------------------------------------- /options/community/vacBan/me.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceTheme/Steam/HEAD/options/community/vacBan/me.css -------------------------------------------------------------------------------- /options/fonts/arial.css: -------------------------------------------------------------------------------- 1 | * { 2 | font-family: Arial, sans-serif !important; 3 | } -------------------------------------------------------------------------------- /options/fonts/beVietnamPro.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceTheme/Steam/HEAD/options/fonts/beVietnamPro.css -------------------------------------------------------------------------------- /options/fonts/gluten.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceTheme/Steam/HEAD/options/fonts/gluten.css -------------------------------------------------------------------------------- /options/fonts/montserrat.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceTheme/Steam/HEAD/options/fonts/montserrat.css -------------------------------------------------------------------------------- /options/fonts/quicksand.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceTheme/Steam/HEAD/options/fonts/quicksand.css -------------------------------------------------------------------------------- /options/fonts/roboto.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceTheme/Steam/HEAD/options/fonts/roboto.css -------------------------------------------------------------------------------- /options/fonts/sourceCodePro.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceTheme/Steam/HEAD/options/fonts/sourceCodePro.css -------------------------------------------------------------------------------- /options/fonts/ubuntu.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceTheme/Steam/HEAD/options/fonts/ubuntu.css -------------------------------------------------------------------------------- /options/general/achievementNotifaction.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceTheme/Steam/HEAD/options/general/achievementNotifaction.css -------------------------------------------------------------------------------- /options/general/alwaysShowSidebar.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceTheme/Steam/HEAD/options/general/alwaysShowSidebar.css -------------------------------------------------------------------------------- /options/general/friendIcon.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceTheme/Steam/HEAD/options/general/friendIcon.css -------------------------------------------------------------------------------- /options/general/navigationButtons.css: -------------------------------------------------------------------------------- 1 | ._3Z3ohQ8-1NKnCZkbS6fvy ._2D64jIEK7wpUR_NlObDW76 svg { 2 | display: none; 3 | } -------------------------------------------------------------------------------- /options/general/showSidebarOnHover.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceTheme/Steam/HEAD/options/general/showSidebarOnHover.css -------------------------------------------------------------------------------- /options/general/systemAccent.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceTheme/Steam/HEAD/options/general/systemAccent.css -------------------------------------------------------------------------------- /options/general/userpannel/buttons/bpm.css: -------------------------------------------------------------------------------- 1 | ._3cykd-VfN_xBxf3Qxriccm ._3LKQ3S_yqrebeNLF6aeiog { 2 | display: none; 3 | } -------------------------------------------------------------------------------- /options/general/userpannel/buttons/friendList.css: -------------------------------------------------------------------------------- 1 | .userpannel-buttoncontainer ._1TdaAqMFadi0UTqilrkelR { 2 | display: none; 3 | } -------------------------------------------------------------------------------- /options/general/userpannel/buttons/news.css: -------------------------------------------------------------------------------- 1 | ._3cykd-VfN_xBxf3Qxriccm ._5wILZhsLODVwGfcJ0hKmJ { 2 | display: none; 3 | } -------------------------------------------------------------------------------- /options/general/userpannel/buttons/notification.css: -------------------------------------------------------------------------------- 1 | ._3cykd-VfN_xBxf3Qxriccm ._3mGEzzp18imtSzGPkduedi { 2 | display: none; 3 | } -------------------------------------------------------------------------------- /options/general/userpannel/buttons/steamVr.css: -------------------------------------------------------------------------------- 1 | ._3cykd-VfN_xBxf3Qxriccm ._3lRfTo8Wo3phXfE1DvK6QW { 2 | display: none; 3 | } -------------------------------------------------------------------------------- /options/general/userpannel/userpannel.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceTheme/Steam/HEAD/options/general/userpannel/userpannel.css -------------------------------------------------------------------------------- /options/general/userpannel/userpannel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceTheme/Steam/HEAD/options/general/userpannel/userpannel.js -------------------------------------------------------------------------------- /options/general/walletBalance.css: -------------------------------------------------------------------------------- 1 | ._2jphjrSifC6orDT4g_7Wd { 2 | display: none; 3 | } -------------------------------------------------------------------------------- /options/general/windowControls/hide.css: -------------------------------------------------------------------------------- 1 | .window-controls { 2 | display: none !important; 3 | } -------------------------------------------------------------------------------- /options/general/windowControls/showOnHover.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceTheme/Steam/HEAD/options/general/windowControls/showOnHover.css -------------------------------------------------------------------------------- /options/library/bannerPosition/left.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceTheme/Steam/HEAD/options/library/bannerPosition/left.css -------------------------------------------------------------------------------- /options/library/bannerPosition/right.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceTheme/Steam/HEAD/options/library/bannerPosition/right.css -------------------------------------------------------------------------------- /options/library/gamepage/alwaysShowGameInfo.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceTheme/Steam/HEAD/options/library/gamepage/alwaysShowGameInfo.css -------------------------------------------------------------------------------- /options/library/gamepage/biggerBanner.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceTheme/Steam/HEAD/options/library/gamepage/biggerBanner.css -------------------------------------------------------------------------------- /options/library/gamepage/customArtwork.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceTheme/Steam/HEAD/options/library/gamepage/customArtwork.css -------------------------------------------------------------------------------- /options/library/gamepage/gameInfoArtwork.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceTheme/Steam/HEAD/options/library/gamepage/gameInfoArtwork.css -------------------------------------------------------------------------------- /options/library/gamepage/sidebarLeft.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceTheme/Steam/HEAD/options/library/gamepage/sidebarLeft.css -------------------------------------------------------------------------------- /options/library/home/addShelf.css: -------------------------------------------------------------------------------- 1 | ._3SkuN_ykQuWGF94fclHdhJ { 2 | display: none; 3 | } -------------------------------------------------------------------------------- /options/library/home/shinyEffect.css: -------------------------------------------------------------------------------- 1 | .MyNb5dG3FsBnKdp8j_ntk { 2 | display: none; 3 | } -------------------------------------------------------------------------------- /options/library/home/undarkUninstalled.css: -------------------------------------------------------------------------------- 1 | ._1pwP4eeP1zQD7PEgmsep0W:has(.mA39Hqv8LacDppegb_Q_Z) { 2 | opacity: 1 !important; 3 | } -------------------------------------------------------------------------------- /options/library/home/whatsNew/compact.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceTheme/Steam/HEAD/options/library/home/whatsNew/compact.css -------------------------------------------------------------------------------- /options/library/home/whatsNew/hide.css: -------------------------------------------------------------------------------- 1 | ._17uEBe5Ri8TMsnfELvs8-N { 2 | display: none; 3 | } -------------------------------------------------------------------------------- /options/settings.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceTheme/Steam/HEAD/options/settings.css -------------------------------------------------------------------------------- /options/store/cart/digidalProductInfo.css: -------------------------------------------------------------------------------- 1 | .jY9l4aHTdQLHeTWfPonTr { 2 | display: none !important; 3 | } -------------------------------------------------------------------------------- /options/store/cart/followCreators.css: -------------------------------------------------------------------------------- 1 | ._2HG7VOroS8aHSg-W3fPyTt { 2 | display: none !important; 3 | } -------------------------------------------------------------------------------- /options/store/cart/recommendations.css: -------------------------------------------------------------------------------- 1 | .ShoppingCart ._2rkDlHZ2yi-tFtDk4-CC4U { 2 | display: none; 3 | } -------------------------------------------------------------------------------- /options/store/footer.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceTheme/Steam/HEAD/options/store/footer.css -------------------------------------------------------------------------------- /options/store/gamepage/broadcast.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceTheme/Steam/HEAD/options/store/gamepage/broadcast.css -------------------------------------------------------------------------------- /options/store/gamepage/infoSidebarLeft.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceTheme/Steam/HEAD/options/store/gamepage/infoSidebarLeft.css -------------------------------------------------------------------------------- /options/store/gamepage/writeReview.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceTheme/Steam/HEAD/options/store/gamepage/writeReview.css -------------------------------------------------------------------------------- /options/store/pointshop/header.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceTheme/Steam/HEAD/options/store/pointshop/header.css -------------------------------------------------------------------------------- /options/store/urlBar.css: -------------------------------------------------------------------------------- 1 | ._1bGewp3tfzqAF6fVTFFUOz .UkR3sY319PuaUNuUWks2K { 2 | display: none; 3 | } -------------------------------------------------------------------------------- /options/store/wishlist/wishlistGrid.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceTheme/Steam/HEAD/options/store/wishlist/wishlistGrid.css -------------------------------------------------------------------------------- /options/store/wishlist/wishlistGrid.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /skin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceTheme/Steam/HEAD/skin.json -------------------------------------------------------------------------------- /src/css/bigpicture.custom.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/css/custom/animatedAvatar.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/css/custom/animatedAvatar.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/css/custom/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceTheme/Steam/HEAD/src/css/custom/custom.css -------------------------------------------------------------------------------- /src/css/custom/custom.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/css/custom/customBackground.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceTheme/Steam/HEAD/src/css/custom/customBackground.css -------------------------------------------------------------------------------- /src/css/custom/customBackground.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/css/custom/data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceTheme/Steam/HEAD/src/css/custom/data.json -------------------------------------------------------------------------------- /src/css/custom/gradientName.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/css/custom/gradientName.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/css/friends.custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceTheme/Steam/HEAD/src/css/friends.custom.css -------------------------------------------------------------------------------- /src/css/friends/chat.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceTheme/Steam/HEAD/src/css/friends/chat.css -------------------------------------------------------------------------------- /src/css/friends/groupChat.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/css/friends/list.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceTheme/Steam/HEAD/src/css/friends/list.css -------------------------------------------------------------------------------- /src/css/inputs/button.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceTheme/Steam/HEAD/src/css/inputs/button.css -------------------------------------------------------------------------------- /src/css/inputs/checkbox.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceTheme/Steam/HEAD/src/css/inputs/checkbox.css -------------------------------------------------------------------------------- /src/css/inputs/inputs.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceTheme/Steam/HEAD/src/css/inputs/inputs.css -------------------------------------------------------------------------------- /src/css/inputs/radio.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceTheme/Steam/HEAD/src/css/inputs/radio.css -------------------------------------------------------------------------------- /src/css/inputs/radiogroup.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceTheme/Steam/HEAD/src/css/inputs/radiogroup.css -------------------------------------------------------------------------------- /src/css/inputs/range.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceTheme/Steam/HEAD/src/css/inputs/range.css -------------------------------------------------------------------------------- /src/css/libraryroot.custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceTheme/Steam/HEAD/src/css/libraryroot.custom.css -------------------------------------------------------------------------------- /src/css/menu.custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceTheme/Steam/HEAD/src/css/menu.custom.css -------------------------------------------------------------------------------- /src/css/notifications.custom.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/css/overlay.custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceTheme/Steam/HEAD/src/css/overlay.custom.css -------------------------------------------------------------------------------- /src/css/overlay/achievements.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/css/overlay/clock.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/css/overlay/controllerSettings.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/css/overlay/discussions.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/css/overlay/dlc.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/css/overlay/friends.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/css/overlay/gameOverview.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/css/overlay/guides.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/css/overlay/notes.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/css/overlay/recording.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/css/overlay/screenshotManager.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/css/overlay/settings.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/css/overlay/webBrowser.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/css/plugins/augmentedSteam.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceTheme/Steam/HEAD/src/css/plugins/augmentedSteam.css -------------------------------------------------------------------------------- /src/css/plugins/dwmx.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceTheme/Steam/HEAD/src/css/plugins/dwmx.css -------------------------------------------------------------------------------- /src/css/plugins/extendium/plugins.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceTheme/Steam/HEAD/src/css/plugins/extendium/plugins.css -------------------------------------------------------------------------------- /src/css/plugins/extendium/protondb.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceTheme/Steam/HEAD/src/css/plugins/extendium/protondb.css -------------------------------------------------------------------------------- /src/css/plugins/extendium/steamdb.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceTheme/Steam/HEAD/src/css/plugins/extendium/steamdb.css -------------------------------------------------------------------------------- /src/css/regular.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceTheme/Steam/HEAD/src/css/regular.css -------------------------------------------------------------------------------- /src/css/root.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceTheme/Steam/HEAD/src/css/root.css -------------------------------------------------------------------------------- /src/css/startupLogin.custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceTheme/Steam/HEAD/src/css/startupLogin.custom.css -------------------------------------------------------------------------------- /src/css/steam/achievementsModal.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceTheme/Steam/HEAD/src/css/steam/achievementsModal.css -------------------------------------------------------------------------------- /src/css/steam/downloadPage.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceTheme/Steam/HEAD/src/css/steam/downloadPage.css -------------------------------------------------------------------------------- /src/css/steam/gamepage.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceTheme/Steam/HEAD/src/css/steam/gamepage.css -------------------------------------------------------------------------------- /src/css/steam/libHome.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceTheme/Steam/HEAD/src/css/steam/libHome.css -------------------------------------------------------------------------------- /src/css/steam/millenniumSettings.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceTheme/Steam/HEAD/src/css/steam/millenniumSettings.css -------------------------------------------------------------------------------- /src/css/steam/modalDialogPopup.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceTheme/Steam/HEAD/src/css/steam/modalDialogPopup.css -------------------------------------------------------------------------------- /src/css/steam/newsModal.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceTheme/Steam/HEAD/src/css/steam/newsModal.css -------------------------------------------------------------------------------- /src/css/steam/screenshotManager.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceTheme/Steam/HEAD/src/css/steam/screenshotManager.css -------------------------------------------------------------------------------- /src/css/steam/settings.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceTheme/Steam/HEAD/src/css/steam/settings.css -------------------------------------------------------------------------------- /src/css/steam/sidebar.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceTheme/Steam/HEAD/src/css/steam/sidebar.css -------------------------------------------------------------------------------- /src/css/steam/soundtrackPage.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceTheme/Steam/HEAD/src/css/steam/soundtrackPage.css -------------------------------------------------------------------------------- /src/css/steam/titlebar.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceTheme/Steam/HEAD/src/css/steam/titlebar.css -------------------------------------------------------------------------------- /src/css/webkit.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceTheme/Steam/HEAD/src/css/webkit.css -------------------------------------------------------------------------------- /src/css/webkit/community/profile/awards.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceTheme/Steam/HEAD/src/css/webkit/community/profile/awards.css -------------------------------------------------------------------------------- /src/css/webkit/community/profile/user.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceTheme/Steam/HEAD/src/css/webkit/community/profile/user.css -------------------------------------------------------------------------------- /src/css/webkit/store/agecheck.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceTheme/Steam/HEAD/src/css/webkit/store/agecheck.css -------------------------------------------------------------------------------- /src/css/webkit/store/bundleInfo.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceTheme/Steam/HEAD/src/css/webkit/store/bundleInfo.css -------------------------------------------------------------------------------- /src/css/webkit/store/cart.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceTheme/Steam/HEAD/src/css/webkit/store/cart.css -------------------------------------------------------------------------------- /src/css/webkit/store/checkout.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceTheme/Steam/HEAD/src/css/webkit/store/checkout.css -------------------------------------------------------------------------------- /src/css/webkit/store/game.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceTheme/Steam/HEAD/src/css/webkit/store/game.css -------------------------------------------------------------------------------- /src/css/webkit/store/home.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceTheme/Steam/HEAD/src/css/webkit/store/home.css -------------------------------------------------------------------------------- /src/css/webkit/store/news.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceTheme/Steam/HEAD/src/css/webkit/store/news.css -------------------------------------------------------------------------------- /src/css/webkit/store/pointsshop.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceTheme/Steam/HEAD/src/css/webkit/store/pointsshop.css -------------------------------------------------------------------------------- /src/css/webkit/store/search.css: -------------------------------------------------------------------------------- 1 | .search_price_discount_combined { 2 | width: unset !important; 3 | } -------------------------------------------------------------------------------- /src/css/webkit/store/stats.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceTheme/Steam/HEAD/src/css/webkit/store/stats.css -------------------------------------------------------------------------------- /src/css/webkit/store/wishlist.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceTheme/Steam/HEAD/src/css/webkit/store/wishlist.css -------------------------------------------------------------------------------- /src/icons/fluent/_font/FluentSystemIcons-Filled.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceTheme/Steam/HEAD/src/icons/fluent/_font/FluentSystemIcons-Filled.ttf -------------------------------------------------------------------------------- /src/icons/fluent/_font/FluentSystemIcons-Filled.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceTheme/Steam/HEAD/src/icons/fluent/_font/FluentSystemIcons-Filled.woff -------------------------------------------------------------------------------- /src/icons/fluent/_font/FluentSystemIcons-Filled.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceTheme/Steam/HEAD/src/icons/fluent/_font/FluentSystemIcons-Filled.woff2 -------------------------------------------------------------------------------- /src/icons/fluent/_font/FluentSystemIcons-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceTheme/Steam/HEAD/src/icons/fluent/_font/FluentSystemIcons-Regular.ttf -------------------------------------------------------------------------------- /src/icons/fluent/_font/FluentSystemIcons-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceTheme/Steam/HEAD/src/icons/fluent/_font/FluentSystemIcons-Regular.woff -------------------------------------------------------------------------------- /src/icons/fluent/_font/FluentSystemIcons-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceTheme/Steam/HEAD/src/icons/fluent/_font/FluentSystemIcons-Regular.woff2 -------------------------------------------------------------------------------- /src/icons/fluent/_font/LICENSE-3rdParty.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceTheme/Steam/HEAD/src/icons/fluent/_font/LICENSE-3rdParty.md -------------------------------------------------------------------------------- /src/icons/fluent/fluent.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceTheme/Steam/HEAD/src/icons/fluent/fluent.css -------------------------------------------------------------------------------- /src/icons/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceTheme/Steam/HEAD/src/icons/logo.svg -------------------------------------------------------------------------------- /src/icons/platform/linux.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceTheme/Steam/HEAD/src/icons/platform/linux.svg -------------------------------------------------------------------------------- /src/icons/platform/windows.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceTheme/Steam/HEAD/src/icons/platform/windows.svg -------------------------------------------------------------------------------- /src/icons/play.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceTheme/Steam/HEAD/src/icons/play.svg -------------------------------------------------------------------------------- /src/js/friends.custom.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/js/libraryroot.custom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceTheme/Steam/HEAD/src/js/libraryroot.custom.js -------------------------------------------------------------------------------- /src/js/notifications.custom.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/js/webkit.js: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------