diff --git a/src/main.rs b/src/main.rs index 340536c..3d0d16b 100644 --- a/src/main.rs +++ b/src/main.rs @@ -1,3 +1,7 @@ +//! src/main.rs +//! This file launches the web server which hosts the fileserver and the api +//! + pub mod sql; // relevant macros and imports for rocket.rs diff --git a/website/index.css b/website/index.css new file mode 100644 index 0000000..144d829 --- /dev/null +++ b/website/index.css @@ -0,0 +1,25 @@ +/* +Index.css +Description: This file is the stylesheet for the html that the + user will see if they do not have javascript enabled. +Author: Arlo Filley +*/ + +:root { + --background-color: #dde83d; + --text-color: #000000; + --font: Verdana, Geneva, Tahoma, sans-serif; +} + +body { + background-color: var(--background-color); +} + +noscript { + display: block; + text-align: center; + + font-family: var(--font); + color: var(--text-color); + font-size: large; +} \ No newline at end of file diff --git a/website/index.html b/website/index.html index 8d1f912..fceda9e 100644 --- a/website/index.html +++ b/website/index.html @@ -6,6 +6,9 @@