Skip to content

Commit

Permalink
autobuyers
Browse files Browse the repository at this point in the history
  • Loading branch information
teamdoug committed Feb 26, 2021
1 parent 758e350 commit 5c4c89c
Show file tree
Hide file tree
Showing 2 changed files with 230 additions and 128 deletions.
50 changes: 36 additions & 14 deletions src/App.css
Original file line number Diff line number Diff line change
Expand Up @@ -19,11 +19,11 @@ body {
font-size: larger;
display: flex;
justify-content: space-between;
width: 100%
width: 100%;
}

.header .button {
margin-right: 5px
margin-right: 5px;
}

.header .button.selected {
Expand All @@ -44,10 +44,9 @@ body {

.headerValue {
font-size: x-large;
font-weight: bold
font-weight: bold;
}


.headerElement {
margin-right: 15px;
margin-bottom: 5px;
Expand All @@ -68,7 +67,6 @@ body {
.panel {
background-color: #484848;
/*min-height: 100%;*/

}

#leftPanel {
Expand All @@ -77,7 +75,7 @@ body {
padding: 5px;
min-height: calc(100vh - 117px);
max-height: calc(100vh - 117px);
position:relative;
position: relative;
overflow: hidden;
}

Expand Down Expand Up @@ -119,10 +117,11 @@ body {
padding: 3px 5px;
background-color: #222;
cursor: pointer;
user-select: none;
user-select: none;
}

.button p, .milestone p {
.button p,
.milestone p {
margin: 0px;
}

Expand All @@ -132,12 +131,36 @@ body {

.button.disabled {
color: #bbb;
background-color: #666
background-color: #666;
}

#upgrades .wrapper {
display: flex;
flex-wrap: wrap;
justify-content: space-between;
}

.autobuyer {
flex-basis: 15%;
margin-bottom: 5px;
display: flex;
flex-direction: column;
}

.autobuyer.enabled {
background-color: #151;
}

.autobuyer.enabled:hover {
background-color: #1d8a1d;
}

.autobuyer p {
margin: auto;
}

.upgrade.button {
margin-bottom: 5px;
display: block;
}

#collapse {
Expand All @@ -162,11 +185,10 @@ body {
background-color: #222;
user-select: none;
margin-bottom: 5px;

}
}

.milestone.disabled {
background-color: #666
background-color: #666;
}

.tabs {
Expand All @@ -193,4 +215,4 @@ body {
}
.tab:not(.selected):hover {
background-color: #888;
}
}
Loading

0 comments on commit 5c4c89c

Please sign in to comment.