From ffaf8141e50133192708434de8dc14cf95428a02 Mon Sep 17 00:00:00 2001 From: MaysonLima Date: Sat, 24 Jan 2026 00:20:40 -0300 Subject: [PATCH 1/2] fiz a base do html da pagina ed Login e o inicio do CSS Global --- Login/globalstyle.css | 52 ++++++++++++++++++++++++++++++++++ Login/login.html | 66 +++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 118 insertions(+) create mode 100644 Login/globalstyle.css create mode 100644 Login/login.html 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 From bb0e9b912e1cd98037f832917b88cef5cd44e3ef Mon Sep 17 00:00:00 2001 From: MaysonLima Date: Mon, 2 Feb 2026 09:09:21 -0300 Subject: [PATCH 2/2] java --- .idea/.gitignore | 10 ++++++++++ .idea/StudyFlow.iml | 9 +++++++++ .idea/misc.xml | 6 ++++++ .idea/modules.xml | 8 ++++++++ .idea/vcs.xml | 7 +++++++ 5 files changed, 40 insertions(+) create mode 100644 .idea/.gitignore create mode 100644 .idea/StudyFlow.iml create mode 100644 .idea/misc.xml create mode 100644 .idea/modules.xml create mode 100644 .idea/vcs.xml 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