+
A self-hosted solution to help teachers plan and manage
diff --git a/styles/Home.module.css b/styles/Home.module.css
index 69dd3d1db..281bb08f9 100644
--- a/styles/Home.module.css
+++ b/styles/Home.module.css
@@ -131,4 +131,5 @@
display: flex;
align-items: center;
justify-content: center;
+ margin-top: 2rem;
}
diff --git a/styles/globals.css b/styles/globals.css
index e8e93627b..abb6289c7 100644
--- a/styles/globals.css
+++ b/styles/globals.css
@@ -3,36 +3,16 @@
@tailwind utilities;
:root {
- /* Colors */
- /* Light Gray */
--fcc-gray-00: #ffffff;
- --fcc-gray-05: #f5f6f7;
- --fcc-gray-10: #dfdfe2;
- --fcc-gray-15: #d0d0d5;
- /* Dark Gray */
- --fcc-gray-80: #2a2a40;
- --fcc-gray-75: #3b3b4f;
- --fcc-gray-85: #1b1b32;
--fcc-gray-90: #0a0a23;
-
- /* Primary Colors */
- --fcc-primary-purple: #dbb8ff;
- --fcc-primary-yellow: #f1be32;
- --fcc-primary-blue: #99c9ff;
- --fcc-primary-lightGreen: #acd157;
-
- /* Secondary Colors */
- --fcc-secondary-darkPurple: #5a01a7;
- --fcc-secondary-darkYellow: #4d3800;
- --fcc-secondary-darkBlue: #002ead;
- --fcc-secondary-darkGreen: #00471b;
}
html,
body {
padding: 0;
margin: 0;
- font-family: 'Roboto Mono', monospace;
+ font-family: 'Lato', sans-serif;
+ font-size: clamp(18px, 1.5vw, 21.0625px);
}
a {
@@ -44,9 +24,15 @@ a {
box-sizing: border-box;
}
+.navButton {
+ border: 1px solid;
+ padding-left: 1rem;
+ padding-right: 1rem;
+}
+
.toast-message {
background: var(--fcc-gray-90);
color: var(--fcc-gray-00);
font-size: 20px;
- --toastify-font-family: 'Roboto Mono', monospace;
+ --toastify-font-family: 'Lato', sans-serif;
}
diff --git a/tailwind.config.js b/tailwind.config.js
index 0ef18f55a..9f07a798e 100644
--- a/tailwind.config.js
+++ b/tailwind.config.js
@@ -29,6 +29,7 @@ module.exports = {
0o5: '#f5f6f7',
10: '#dfdfe2',
15: '#d0d0d5',
+ 45: '#858591',
// DARK GRAYs
75: '#3b3b4f',
80: '#2a2a40',
@@ -38,7 +39,7 @@ module.exports = {
primary: {
purple: '#dbb8ff',
- yellow: '#f1be32',
+ yellow: '#ffbf00',
blue: '#99c9ff',
lightGreen: '#acd157'
},
@@ -48,6 +49,16 @@ module.exports = {
darkYellow: '#4d3800',
darkBlue: '#002ead',
darkGreen: '#00471b'
+ },
+
+ mid: {
+ blue: '#198eee',
+ purple: '#9400d3'
+ },
+
+ red: {
+ light: '#ffadad',
+ dark: '#850000'
}
},
...colors