diff --git a/.idea/.gitignore b/.idea/.gitignore new file mode 100644 index 0000000..ab1f416 --- /dev/null +++ b/.idea/.gitignore @@ -0,0 +1,10 @@ +# Default ignored files +/shelf/ +/workspace.xml +# Ignored default folder with query files +/queries/ +# Datasource local storage ignored files +/dataSources/ +/dataSources.local.xml +# Editor-based HTTP Client requests +/httpRequests/ diff --git a/.idea/StudyFlow.iml b/.idea/StudyFlow.iml new file mode 100644 index 0000000..d6ebd48 --- /dev/null +++ b/.idea/StudyFlow.iml @@ -0,0 +1,9 @@ + + + + + + + + + \ No newline at end of file diff --git a/.idea/misc.xml b/.idea/misc.xml new file mode 100644 index 0000000..f5bd2df --- /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..6e25e2a --- /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..8306744 --- /dev/null +++ b/.idea/vcs.xml @@ -0,0 +1,7 @@ + + + + + + + \ No newline at end of file diff --git a/Login/globalstyle.css b/Login/globalstyle.css new file mode 100644 index 0000000..60f13ad --- /dev/null +++ b/Login/globalstyle.css @@ -0,0 +1,52 @@ +@charset "UTF-8"; + + +body{ + min-height: 100vh; + display: flex; + flex-direction: column; + margin: 0; +} + + +.nav{ + background-color: rgb(218, 222, 225); + +} + +.nav ul{ + background-color: rgb(76, 158, 158); + list-style: none; + display: flex; + gap: 20px; + margin: 0; + padding: 0; +} + +.nav ul li a{ + text-decoration: none; + color: #fff; + font-weight: 500; +} + +nav ul li a:hover{ + color: #615ea3; +} + +main{ + flex: 1; +} + +.footer{ + position: fixed; + bottom: 0; + width: 100%; + text-align: center; + background-color: grey; +} + +.footer strong a{ + text-decoration: none; + color: black; +} + diff --git a/Login/login.html b/Login/login.html new file mode 100644 index 0000000..b76bed6 --- /dev/null +++ b/Login/login.html @@ -0,0 +1,66 @@ + + + + + + StudyFlow + + + +

StudyFlow

+ + + + + + + +
+ +
+ + + + + + + \ No newline at end of file