summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--index.html1
-rw-r--r--projects_blog/Python-Dialogue-R.html69
-rw-r--r--style.css5
3 files changed, 75 insertions, 0 deletions
diff --git a/index.html b/index.html
index a3c0a37..7c8b838 100644
--- a/index.html
+++ b/index.html
@@ -28,6 +28,7 @@
Personal Projects
<li class="nnetwork"><a href="projects_blog/NNetwork.html">NNetwork</a></li>
<li class="tic-tac-toe"><a href="projects_blog/Tic-Tac-Toe-ML-Lab-Kit.html">Tic Tac Toe Machine Learning Lab Kit</a></li>
+ <li class="dialoguer"><a href="projects_blog/Python-Dialogue-R.html">DialogueR</a></li>
</ul>
<nav class="nav-footer">
diff --git a/projects_blog/Python-Dialogue-R.html b/projects_blog/Python-Dialogue-R.html
new file mode 100644
index 0000000..1298822
--- /dev/null
+++ b/projects_blog/Python-Dialogue-R.html
@@ -0,0 +1,69 @@
+<!DOCTYPE html>
+<html lang="en">
+<head>
+ <title>chrhodgden - NNetwork</title>
+ <link rel="stylesheet" href="../style.css"/>
+ <style>
+ :root {
+ --theme-color-check: 0;
+ --accent-hue: var(--dialoguer-hue);
+ }
+ </style>
+</head>
+<body>
+
+ <div class="dark-mode-container">
+ <input type="checkbox" id="--dark-theme-check">Dark Mode</input>
+ </div>
+
+ <h1>DialogueR</h1>
+ <p class="header-sub-text">A Python Package that Imports Variables from R</p>
+ <nav class="nav-footer">
+ <hr>
+ <a href="#background">Background</a>
+ | <a href="#the-project">The Project</a>
+ | <a href="#what-i-learned">What I Learned</a>
+ | <a href="#next-steps">Next Steps</a>
+ <hr>
+ </nav>
+ <br>
+ <a href="https://github.com/chrhodgden/python-dialogue-r" target="_blank">GitHub Repository</a>
+ <h2 id="background">Background</h2>
+ <p>
+
+ </p>
+ <a href="https://github.com/chrhodgden/sockets_demo" target="_blank">Sockets Demo Repository</a>
+ <p>
+
+ </p>
+ <h2 id="the-project">The Project</h2>
+ <p>
+
+ </p>
+ <p>
+
+ </p>
+
+ <h2 id="what-i-learned">What I Learned</h2>
+ <ul class="projects-blog">In adding features to this project, I learned:
+ <li></li>
+ </ul>
+
+ <h2 id="next-steps">Next Steps</h2>
+ <p>
+
+ </p>
+ <p>
+
+ </p>
+
+ <nav class="nav-footer">
+ <hr>
+ <a href="..\index.html">Home Page</a>
+ | <a href="..\about.html">About Page</a>
+ | <a href="#">Top of Page</a>
+ <hr>
+ </nav>
+ <script src="../app.js"></script>
+</body>
+</html> \ No newline at end of file
diff --git a/style.css b/style.css
index 9ccd723..4975ab5 100644
--- a/style.css
+++ b/style.css
@@ -15,6 +15,7 @@
--about-hue: 310;
--nnetwork-hue: 240;
--tic-tac-toe-hue: 60;
+ --dialoguer-hue: 0;
--foreground-lightness: calc(10% + calc(var(--dark-theme-check) * 70%));
--background-lightness: calc(80% - calc(var(--dark-theme-check) * 70%));
@@ -112,6 +113,10 @@ li.tic-tac-toe {
color: hsl(var(--tic-tac-toe-hue), 100%, var(--foreground-lightness));
}
+li.dialoguer {
+ color: hsl(var(--dialoguer-hue), 100%, var(--foreground-lightness));
+}
+
a {
color: var(--contrast-color);
}