diff --git a/app/AgregarTiempo/addTime.css b/app/AgregarTiempo/addTime.css new file mode 100644 index 0000000..8a95b1d --- /dev/null +++ b/app/AgregarTiempo/addTime.css @@ -0,0 +1,11 @@ +.addTime { + position: relative; + max-width: 600px; + margin-top: 1rem; + border: 1px solid #e5e7eb; + border-radius: 4px; + background-color: #f9fafb; + padding: 1rem; + display: flex; + flex-direction: column; +} \ No newline at end of file diff --git a/app/AgregarTiempo/page.tsx b/app/AgregarTiempo/page.tsx index b5dccd3..aeaa262 100644 --- a/app/AgregarTiempo/page.tsx +++ b/app/AgregarTiempo/page.tsx @@ -1,11 +1,24 @@ +import Information from "../Components/Information/information"; +import Receipt from "../Components/Receipt/Receipt"; import SearchUser from "../Components/SearchUser/searchUser"; +import './addTime.css' + export default function Page() { return (

AGREGAR TIEMPO

+ + + +
+ +
); diff --git a/app/Alta/page.tsx b/app/Alta/page.tsx index 5f7975e..d80d316 100644 --- a/app/Alta/page.tsx +++ b/app/Alta/page.tsx @@ -1,6 +1,7 @@ 'use client' import { useState } from "react"; import "../globals.css"; +import StepNavigator from "../Components/StepNavigator/StepNavigator"; export default function Page() { const [step, setStep] = useState(1); @@ -20,8 +21,8 @@ export default function Page() {

ALTA

-
- + console.log()}> + setUser(e.target.value)} placeholder='Coloca ' /> - + +
-
-
+ + + + ); } //IO \ No newline at end of file diff --git a/app/Components/ChangePassword/changePassword.tsx b/app/Components/ChangePassword/changePassword.tsx index 0239690..96d2d2d 100644 --- a/app/Components/ChangePassword/changePassword.tsx +++ b/app/Components/ChangePassword/changePassword.tsx @@ -1,7 +1,7 @@ function ChangePassword() { return ( -
+
+

Hecho en México. Todos los derechos reservados 2025. Esta página puede ser reproducida con fines no lucrativos, siempre y cuando no se mutile, se cite la fuente completa y su dirección electrónica. De otra forma, requiere permiso previo por escrito de la institución.

+
) } diff --git a/app/Components/Header/Header.css b/app/Components/Header/Header.module.css similarity index 91% rename from app/Components/Header/Header.css rename to app/Components/Header/Header.module.css index 331acbc..a32f2f2 100644 --- a/app/Components/Header/Header.css +++ b/app/Components/Header/Header.module.css @@ -25,10 +25,10 @@ content: ""; top: 0; left: -20px; - width: 70%; + width: 60%; height: 100%; min-width: 300px; - background-color: #d59f0f; + background: #d59f0f; transform: skew(-45deg); z-index: 0; } diff --git a/app/Components/Header/Header.tsx b/app/Components/Header/Header.tsx index 1d5f8f7..199f951 100644 --- a/app/Components/Header/Header.tsx +++ b/app/Components/Header/Header.tsx @@ -1,21 +1,21 @@ import Image from "next/image"; -import "./Header.css"; +import header from"./Header.module.css"; import Link from "next/link"; function Header() { return (
- + Logo FES -
-
+
+
Image of CEDETEC +
}} > -

Inicio de sesión

+

Inicio de sesión

diff --git a/app/Inscritos/page.tsx b/app/Inscritos/page.tsx index 44b48fd..0d475ae 100644 --- a/app/Inscritos/page.tsx +++ b/app/Inscritos/page.tsx @@ -5,7 +5,43 @@ export default function Page() {

INSCRITOS

- + + +
+ + +
+ + + +
+ + + + + + + + + + + + +
CarreraWindowsMacintoshLinuxProfesores
+
); diff --git a/app/globals.css b/app/globals.css index 1362030..41a8f74 100644 --- a/app/globals.css +++ b/app/globals.css @@ -68,16 +68,19 @@ main { } footer { + position: relative; display: flex; justify-content: center; text-align: center; padding: 10px; background-color: rgba(0, 61, 121, 1); + z-index: 0; } footer p { color: white; max-width: 900px; + z-index: 2; } .container { @@ -304,10 +307,55 @@ form { border-bottom: 1px solid rgb(1, 92, 184); } -p{ +p { font-size: 1.5rem; } +table { + width: 100%; + border-collapse: collapse; + table-layout: auto; +} + +table th, +table td { + padding: 10px; + text-align: center; + border-bottom: 1px solid #cfcfcf; + word-wrap: break-word; + overflow-wrap: break-word; +} + +table th { + position: sticky; + top: 0px; + background-color: rgb(1, 92, 184); + color: white; +} + +table tr { + min-width: 400px; +} + +.tableContainer { + margin-top: 10px; + overflow-y: auto; + overflow-x: auto; + border-radius: 4px; + border: 1px solid #cfcfcf; + max-height: 430px; + scrollbar-color: rgb(1, 92, 184) rgba(0, 0, 0, 0); + background-color: #f9f9f9; + width: 100%; +} + +.centerGrid { + display: grid; + grid-template-columns: auto 400px; + justify-content: center; + align-items: center; +} + @media (max-width: 800px) { header { padding: 6px 16px;