-
-
Notifications
You must be signed in to change notification settings - Fork 34
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #28 from boltgolt/dev
Version 0.2.1
- Loading branch information
Showing
33 changed files
with
1,632 additions
and
244 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,3 @@ | ||
# These are supported funding model platforms | ||
ko_fi: boltgolt | ||
github: boltgolt | ||
custom: https://www.buymeacoffee.com/boltgolt |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,6 @@ | ||
node_modules | ||
|
||
config.override.json5 | ||
keybinds.override.json5 | ||
|
||
libraryfolders.vdf |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
{ | ||
"Control+Alt+R": "functions.reload()" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
/* | ||
* Use this file to apply custom styles to the radar image | ||
*/ | ||
|
||
/* Any player dot */ | ||
div.dot {} | ||
|
||
/* Players that are CT or T */ | ||
div.dot.CT {} | ||
div.dot.T {} | ||
|
||
/* The player with the bomb */ | ||
div.dot.bomb{} | ||
|
||
/* The player currently being observed */ | ||
div.dot.active {} | ||
|
||
/* A dead player */ | ||
div.dot.dead {} | ||
|
||
/* The number on a player dot */ | ||
div.label {} | ||
|
||
/* The number on the dot being spectated */ | ||
div.label.active {} | ||
|
||
/* The dropped or planted bomb on the map */ | ||
#bomb {} | ||
|
||
/* Smoke circles on the map */ | ||
#smokes > div {} | ||
|
||
/* Inferno circles on the map */ | ||
.inferno > div {} | ||
|
||
/* The advisory on screen */ | ||
#advisory {} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,54 @@ | ||
body { | ||
overflow: hidden; | ||
cursor: inherit; | ||
} | ||
|
||
#game { | ||
width: 100vw; | ||
max-width: 100vw; | ||
} | ||
|
||
img { | ||
height: 30px; | ||
margin-right: 10px; | ||
animation: none; | ||
} | ||
|
||
#text { | ||
position: absolute; | ||
top: 72px; | ||
width: 100vw; | ||
display: flex; | ||
justify-content: center; | ||
align-items: center; | ||
} | ||
|
||
#text > div { | ||
display: inline; | ||
opacity: .8; | ||
} | ||
|
||
#text span { | ||
text-decoration: underline; | ||
cursor: pointer; | ||
position: relative; | ||
z-index: 2000; | ||
-webkit-app-region: no-drag; | ||
} | ||
|
||
#text span:hover { | ||
cursor: pointer; | ||
-webkit-app-region: no-drag; | ||
} | ||
|
||
#dragarea { | ||
-webkit-app-region: drag; | ||
height: 100vh; | ||
width: 100vw; | ||
top: 0; | ||
left: 0; | ||
} | ||
|
||
#version { | ||
bottom: 14px; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.