-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
8 changed files
with
265 additions
and
135 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 |
---|---|---|
@@ -0,0 +1,2 @@ | ||
- Close riot client if dolos closes | ||
- Read which games are installed and only show the ones installed |
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
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,143 @@ | ||
body { | ||
display: flex; | ||
justify-content: center; | ||
align-items: center; | ||
height: 100vh; | ||
margin: 0; | ||
background-color: #202020; | ||
font-family: Arial, sans-serif; | ||
overflow: hidden; | ||
user-select: none; | ||
position: relative; | ||
} | ||
.header { | ||
position: absolute; | ||
top: 5px; | ||
} | ||
.header h1 { | ||
margin-right: 25px; | ||
text-align: center; | ||
font-size: 40px; | ||
color: whitesmoke; | ||
font-weight: bold; | ||
} | ||
.header p { | ||
margin-top: 5px; | ||
color: rgba(128, 128, 128, 0.925); | ||
} | ||
.header img { | ||
width: 50px; | ||
height: auto; | ||
margin-right: 10px; | ||
position: relative; | ||
top: 15px; | ||
} | ||
.game-container { | ||
position: absolute; | ||
top: 170px; | ||
display: grid; | ||
grid-gap: 20px; | ||
grid-template-columns: repeat(2, 1fr); | ||
width: 80%; | ||
} | ||
.game-card { | ||
background: #303030; | ||
border-radius: 20px; | ||
color: white; | ||
text-align: center; | ||
padding: 20px; | ||
transition: 0.3s; | ||
cursor:pointer; | ||
} | ||
.game-card:hover { | ||
transform: scale(1.1); | ||
} | ||
.game-card img { | ||
width: 100%; | ||
height: 100%; | ||
border-radius: 20px; | ||
} | ||
|
||
.overlay { | ||
display: none; | ||
position: fixed; | ||
top: 0; | ||
left: 0; | ||
width: 100%; | ||
height: 100%; | ||
background: rgba(0, 0, 0, 0.5); | ||
justify-content: center; | ||
align-items: center; | ||
z-index: 1000; | ||
} | ||
|
||
.loading-container { | ||
text-align: center; | ||
color: white; | ||
font-size: x-large; | ||
display: flex; | ||
flex-direction: column; | ||
align-items: center; | ||
justify-content: center; | ||
height: 100%; | ||
} | ||
|
||
.loading-icon { | ||
border: 4px solid #f3f3f3; | ||
border-top: 4px solid #b52712; | ||
border-radius: 50%; | ||
width: 50px; | ||
height: 50px; | ||
animation: spin 1s linear infinite; | ||
margin-bottom: 10px; | ||
} | ||
|
||
@keyframes spin { | ||
0% { transform: rotate(0deg); } | ||
100% { transform: rotate(360deg); } | ||
} | ||
|
||
.popup { | ||
display: none; | ||
position: fixed; | ||
top: 0; | ||
left: 0; | ||
width: 100%; | ||
height: 100%; | ||
background: rgba(0, 0, 0, 0.5); | ||
justify-content: center; | ||
align-items: center; | ||
z-index: 1001; | ||
} | ||
|
||
.popup-content { | ||
background: #303030; | ||
color: rgba(245, 245, 245, 0.767); | ||
padding: 20px; | ||
border-radius: 10px; | ||
text-align: center; | ||
width: 40%; | ||
margin: auto; | ||
position: relative; | ||
top: 40%; | ||
} | ||
|
||
.popup-content p { | ||
margin-bottom: 20px; | ||
} | ||
|
||
.btn-yes, | ||
.btn-no { | ||
background-color: #4CAF50; | ||
color: rgba(245, 245, 245, 0.842);; | ||
padding: 10px 20px; | ||
margin: 0 10px; | ||
border: none; | ||
border-radius: 5px; | ||
cursor: pointer; | ||
font-size: 16px; | ||
} | ||
|
||
.btn-no { | ||
background-color: #f44336; | ||
} |
Oops, something went wrong.