Skip to content

Commit

Permalink
updated styling
Browse files Browse the repository at this point in the history
  • Loading branch information
jacobmichels committed Apr 19, 2020
1 parent 8f52ea9 commit 49719be
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 6 deletions.
12 changes: 8 additions & 4 deletions electron/src/index.css
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ html,body {
/* margin: 0; */
height: 100%;
/* padding: 0; */
background: linear-gradient(to bottom,#ff9e9e ,#d86666);
background: linear-gradient(to bottom,#f4929d ,#cd5c6a);
/* background-repeat: no-repeat; */
}

Expand All @@ -50,6 +50,10 @@ html,body {
background-color: #212121;
}

.bg-color{
background-color: #333333 !important;
}

#valign{
margin: 0;
height: 100%;
Expand All @@ -69,7 +73,7 @@ html,body {
color: #f44336 !important;
} */
.input-field input[type=text]:focus + label {
color: #d86666 !important;
color: #cd5c6a !important;
}
.input-field input[type=text]:label {
color: white !important;
Expand All @@ -81,8 +85,8 @@ html,body {

/* label underline focus color */
.input-field input[type=text]:focus {
border-bottom: 1px solid #d86666 !important;
box-shadow: 0 1px 0 0 #d86666 !important;
border-bottom: 1px solid #cd5c6a !important;
box-shadow: 0 1px 0 0 #cd5c6a !important;
}

/* .input-field input[type=text].valid {
Expand Down
2 changes: 1 addition & 1 deletion electron/src/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
<!-- <div id="button"><a class="waves-effect waves-light light-blue btn">Hook</a></div> -->
<div class="center-align">
<!-- style="background: linear-gradient(to bottom,#424242 ,#212121);" -->
<div class="card z-depth-4 grey darken-4" >
<div class="bg-color card z-depth-4" >
<div class="card-content white-text">
<span id="title" class="card-title">Queue Listener</span>
<p id="message">After the game instance is found, feel free to minimize this window. You will be notified when your game is ready.</p>
Expand Down
2 changes: 1 addition & 1 deletion electron/src/render.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ var interval;
const customTitlebar = require('custom-electron-titlebar');

new customTitlebar.Titlebar({
backgroundColor: customTitlebar.Color.fromHex('#212121'),
backgroundColor: customTitlebar.Color.fromHex('#333333'),
menu: null,
icon: "../resources/icons/lol-icon.png"
});
Expand Down

0 comments on commit 49719be

Please sign in to comment.