commit eead1b61636de3c9a3a3b49a8e1be32fabeb157e Author: Matthew Date: Sat Mar 22 00:37:31 2025 -0400 initial commit diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..f75b36b --- /dev/null +++ b/.gitignore @@ -0,0 +1,2 @@ +.idea +libraryofcode.dev-frontend.iml diff --git a/.idea/.gitignore b/.idea/.gitignore new file mode 100644 index 0000000..13566b8 --- /dev/null +++ b/.idea/.gitignore @@ -0,0 +1,8 @@ +# Default ignored files +/shelf/ +/workspace.xml +# Editor-based HTTP Client requests +/httpRequests/ +# Datasource local storage ignored files +/dataSources/ +/dataSources.local.xml diff --git a/.idea/discord.xml b/.idea/discord.xml new file mode 100644 index 0000000..30bab2a --- /dev/null +++ b/.idea/discord.xml @@ -0,0 +1,7 @@ + + + + + \ No newline at end of file diff --git a/.idea/misc.xml b/.idea/misc.xml new file mode 100644 index 0000000..639900d --- /dev/null +++ b/.idea/misc.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/.idea/modules.xml b/.idea/modules.xml new file mode 100644 index 0000000..ca9431c --- /dev/null +++ b/.idea/modules.xml @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/.idea/vcs.xml b/.idea/vcs.xml new file mode 100644 index 0000000..94a25f7 --- /dev/null +++ b/.idea/vcs.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/index.html b/index.html new file mode 100644 index 0000000..ee836cc --- /dev/null +++ b/index.html @@ -0,0 +1,45 @@ + + + + + + LOC Community + + + + +
+

LOC Community

+ +
+ +
+
+

libraryofcode.dev

+

+ This hub is your starting point for accessing our community resources, student accounts, apprenticeships, and more. + Use the navigation above to explore the main site, LMS, identity services, and login to your workspace. +

+
+
+

The .dev domain

+

+ The libraryofcode.dev domain serves as a dedicated hub for members of the Library of Code community, including students, apprentices, educators, and staff. Its primary purpose is to centralize access to essential digital resources, user accounts, workspaces, and educational tools. By providing quick, streamlined links to platforms such as Canvas LMS, Okta federated identity services, and personalized Google Workspace accounts, the domain enhances ease of access, collaboration, and efficient resource management within the community. +

+
+ +
+ + + + diff --git a/libraryofcode.dev-frontend.iml b/libraryofcode.dev-frontend.iml new file mode 100644 index 0000000..9a5cfce --- /dev/null +++ b/libraryofcode.dev-frontend.iml @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/styles.css b/styles.css new file mode 100644 index 0000000..287e3f8 --- /dev/null +++ b/styles.css @@ -0,0 +1,49 @@ +/* styles.css */ +body { + margin: 0; + font-family: Arial, sans-serif; + background-color: #f5f5f5; + color: #333; +} + +header { + background-color: #003366; + color: #fff; + padding: 1rem; + text-align: center; +} + +header h1 { + margin: 0; +} + +nav ul { + list-style: none; + padding: 0; + display: flex; + justify-content: center; + gap: 1rem; + margin-top: 0.5rem; +} + +nav ul li a { + color: #fff; + text-decoration: none; + font-weight: bold; +} + +main { + padding: 2rem; + max-width: 800px; + margin: 0 auto; +} + +footer { + background-color: #003366; + color: #fff; + text-align: center; + padding: 1rem; + position: fixed; + bottom: 0; + width: 100%; +}