Skip to content

Commit

Permalink
Merge branch 'master' into navigation-buttons
Browse files Browse the repository at this point in the history
  • Loading branch information
samuelfangjw committed Jun 20, 2021
2 parents 1df7864 + a3f10aa commit 6742838
Showing 1 changed file with 38 additions and 1 deletion.
39 changes: 38 additions & 1 deletion src/styles/_workspaceGreen.scss
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,25 @@ $pure-green: #00ff00;
$dark-green: #00e000;
.GreenScreen {
// Hide NavigationBar
position: absolute;
height: 100vh;
width: 100vw;
margin-top: -50px;
z-index: 1000;
z-index: 15;
background: $pure-green !important;

.workspace {
background: $pure-green !important;
}

#ace-editor {
background: $pure-green !important;
}

.side-content-tooltip {
background: $pure-green !important;
}

#brace-editor {
background: $pure-green !important;
}
Expand All @@ -18,6 +29,32 @@ $dark-green: #00e000;
background: $dark-green !important;
}

/* individual components */
.bp3-button {
background: $pure-green !important;
box-shadow: none !important;
}

.bp3-input {
background: $pure-green !important;
box-shadow: none !important;
}

.bp3-control-indicator {
background: $pure-green !important;
border: 0.1rem solid $dark-green !important;
}

.bp3-control-indicator::before {
background: $pure-green !important;
border: 0.1rem solid $dark-green !important;
box-shadow: none !important;
}

.ace_gutter-active-line {
background: $pure-green !important;
}

/* editor specific */
.editor-react-ace {
color: #222222;
Expand Down

0 comments on commit 6742838

Please sign in to comment.