summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormcd223 <jacob@simplelittledream.com>2019-05-24 23:34:45 -0400
committermcd223 <jacob@simplelittledream.com>2019-05-24 23:34:45 -0400
commit5fe7c95f712f2810d8b9b8fe3f0dcf9bc021fde9 (patch)
treeccee9519c2c2d04bdc2611fd621ba37b3b93656f
parent1baf2c3127d0904fc9baee7f87afca019e1ec5c8 (diff)
Update to dark theme
-rw-r--r--.vscode/settings.json3
-rw-r--r--CSS/main.css8
2 files changed, 8 insertions, 3 deletions
diff --git a/.vscode/settings.json b/.vscode/settings.json
new file mode 100644
index 0000000..ef55170
--- /dev/null
+++ b/.vscode/settings.json
@@ -0,0 +1,3 @@
+{
+ "python.pythonPath": "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\Python37_64\\python.exe"
+} \ No newline at end of file
diff --git a/CSS/main.css b/CSS/main.css
index 7940649..4f416bd 100644
--- a/CSS/main.css
+++ b/CSS/main.css
@@ -1,3 +1,4 @@
+
body, html{
height: calc(100% - 2em);
margin: 0;
@@ -76,7 +77,7 @@ main{
margin-right: auto;
margin-bottom: 15em;
display: block;
- background-color:#D5D5D5;
+ background-color: rgba(213,213,213,.72);
color: #878787;
font-size: 16px;
-webkit-transition: width 0.4s ease-in-out;
@@ -85,6 +86,7 @@ main{
.search:focus{
color: black;
width: 90%;
+ background-color: rgba(213,213,213,1.0);
}
@media only screen and (min-width: 768px) and (min-height: 614px){
body{
@@ -99,14 +101,14 @@ main{
display: none;
}
aside{
- background: #D2D2D2;
+ background:rgba(213,213,213,.72);
grid-template-columns: auto;
padding: 0;
border-radius: 5px 0px 0px 5px;
}
main{
padding: 4em;
- background: white url('../images/wave.svg') no-repeat bottom right;
+ background: rgba(93,93,93,.72);
background-size: 70%;
border-radius: 0px 5px 5px 0px;
}