Skip to content

Commit

Permalink
Update index.css
Browse files Browse the repository at this point in the history
  • Loading branch information
AKSHITHA-CHILUKA authored Jul 27, 2024
1 parent 7c29c34 commit a37bb92
Showing 1 changed file with 20 additions and 11 deletions.
31 changes: 20 additions & 11 deletions src/index.css
Original file line number Diff line number Diff line change
@@ -1,33 +1,42 @@
/* Import Tailwind base, components, and utilities */
@tailwind base;
@tailwind components;
@tailwind utilities;
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');

/* Import Google Font 'Poppins' */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');

/* General body styling */
body {
margin: 0;
font-family: 'Poppins' , sans-serif;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
font-family: 'Poppins', sans-serif; /* Use Poppins font */
-webkit-font-smoothing: antialiased; /* Smooth fonts for Webkit browsers */
-moz-osx-font-smoothing: grayscale; /* Smooth fonts for macOS browsers */
}

/* Styling for code elements */
code {
font-family: source-code-pro, Menlo, Monaco, Consolas, 'Courier New',
monospace;
font-family: source-code-pro, Menlo, Monaco, Consolas, 'Courier New', monospace; /* Use monospace font for code */
}
.text-3xl{

/* Custom margin for text with class 'text-3xl' */
.text-3xl {
margin-top: 80px;
margin-bottom: 40px;
}
::-webkit-scrollbar{

/* Hide scrollbar in Webkit browsers */
::-webkit-scrollbar {
display: none;
}

.Nav__item{
font-size: 12px !important;
font-weight: bolder !important;
/* Styling for navigation items */
.Nav__item {
font-size: 12px !important;
font-weight: bolder !important;
}

/* Hide scrollbar in Firefox and IE/Edge */
* {
scrollbar-width: none; /* Firefox */
-ms-overflow-style: none; /* IE, Edge */
Expand Down

0 comments on commit a37bb92

Please sign in to comment.