Skip to content

Commit

Permalink
Changed the casing of css folder name and linking of style.css to be …
Browse files Browse the repository at this point in the history
…consistent and shown in every webpage. Changed the style of feedback form to make it look modernized, sleek and appealing. Added the tailwindcss utility for easy styling. Also removed the .vscode directory and added it in .gitignore so that in the future no one may ever push it to the repo by mistake.
  • Loading branch information
architmishra-15 committed Dec 8, 2024
1 parent 582550e commit 2f02911
Show file tree
Hide file tree
Showing 15 changed files with 3,356 additions and 66 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
.vscode/
node_modules/
3 changes: 0 additions & 3 deletions .vscode/settings.json

This file was deleted.

2 changes: 1 addition & 1 deletion About/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="../CSS/style.css" />
<link rel="stylesheet" href="../css/style.css" />
<link rel="icon" type="icon" href="../images/favicon.png" />
<link
rel="stylesheet"
Expand Down
8 changes: 6 additions & 2 deletions CSS/style.css
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
@tailwind base;
@tailwind components;
@tailwind utilities;

@import url("https://fonts.googleapis.com/css2?family=VT323&display=swap");

*,
Expand All @@ -9,7 +13,7 @@
}

html {
scroll-snap-type: y mandatory;
scroll-snap-type: none;
}

body {
Expand Down Expand Up @@ -550,7 +554,7 @@ footer .copywrite {
font-size: 25px;
animation: fadeInUp 0.5s ease-in-out 0.2s;
animation-fill-mode: both;
color: black;
color: rgb(0, 0, 0);
}

/* Stats */
Expand Down
Loading

0 comments on commit 2f02911

Please sign in to comment.