Skip to content

Commit

Permalink
move to only css
Browse files Browse the repository at this point in the history
  • Loading branch information
jonsch318 committed Oct 17, 2024
1 parent 153aed9 commit be9162a
Show file tree
Hide file tree
Showing 5 changed files with 57 additions and 57 deletions.
55 changes: 55 additions & 0 deletions src/app/botmein/botmein.module.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,55 @@
.subCont {
@apply bg-gray-200 my-0 block px-3 text-left py-6 relative h-96 rounded-lg shadow-md hover:skew-x-2 hover:skew-y-1 hover:scale-105 transition-all hover:bg-gray-300 cursor-pointer;
}

.subCont h3 {
@apply text-2xl font-bold text-center;
}

.subCont hr {
@apply border border-green-500 w-1/2 mx-auto mt-2 mb-6;
}

.subCont ul {
@apply font-medium text-lg list-disc ml-6;
}

.subCont ul li {
@apply my-1;
}

.subCont .btn {
@apply mt-4 text-center text-lg bg-green-500 px-4 py-2 rounded text-white hover:scale-105 transition duration-300 ease-in-out;
}

.cont {
@apply grid grid-rows-2 lg:grid-rows-1 lg:grid-cols-2 my-3 gap-5;
}

.tutorial {
@apply relative;
}

.tutorial h1 {
@apply text-4xl font-bold text-center font-sans;
}

.tutorial h3 {
@apply text-xl font-medium border-b-1 border-black my-3;
}

.tutorial ul {
@apply font-medium list-disc ml-6;
}

.tutorial ul li {
@apply my-1;
}

.automatic {
@apply relative;
}

.automatic h1 {
@apply text-4xl font-bold text-center font-sans;
}
55 changes: 0 additions & 55 deletions src/app/botmein/botmein.module.scss

This file was deleted.

2 changes: 1 addition & 1 deletion src/app/botmein/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import { Suspense, useEffect, useState } from "react";

import { HeadLine } from "@/components/rwth/headline";

import styles from "./botmein.module.scss";
import styles from "./botmein.module.css";

const IntroQuery = "intro";
const AutomaticQuery = "automatic";
Expand Down
2 changes: 1 addition & 1 deletion src/app/deddebme/layout.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import "./style.scss";
import "./style.css";

import type { Metadata } from "next";
import type { ReactNode } from "react";
Expand Down
File renamed without changes.

0 comments on commit be9162a

Please sign in to comment.