Skip to content

Commit

Permalink
sass style is started
Browse files Browse the repository at this point in the history
  • Loading branch information
HARISHKUMAR023 committed May 23, 2024
1 parent 275510d commit 044127a
Show file tree
Hide file tree
Showing 9 changed files with 63 additions and 3 deletions.
File renamed without changes.
18 changes: 18 additions & 0 deletions assets/css/main.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
/* Error: Expected expression.
* ,
* 4 | background-color: ;
* | ^
* '
* assets\scss\layouts\_navbar.scss 4:23 @import
* assets\scss\main.scss 9:9 root stylesheet */

body::before {
font-family: "Source Code Pro", "SF Mono", Monaco, Inconsolata, "Fira Mono",
"Droid Sans Mono", monospace, monospace;
white-space: pre;
display: block;
padding: 1em;
margin-bottom: 1em;
border-bottom: 2px solid black;
content: "Error: Expected expression.\a \2577 \a 4 \2502 background-color: ;\d\a \2502 ^\a \2575 \a assets\\scss\\layouts\\_navbar.scss 4:23 @import\a assets\\scss\\main.scss 9:9 root stylesheet";
}
1 change: 1 addition & 0 deletions assets/css/main.css.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

11 changes: 11 additions & 0 deletions assets/scss/abstract/_variable.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
$font-primmary: 'Poppins', sans-serif;
$theme-color: (
"primary":#003459,
"primary-hover":#007EA7,
"dark":green,
"text_color":#007EA7,
"menu-bg":green,
"b":black,

);
$color-animation: green;
14 changes: 14 additions & 0 deletions assets/scss/base/_global.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
@use '../abstract/variable' as var;

* {
padding: 0;
margin: 0;
box-sizing: border-box;
font-family: var.$font-primmary ;
scroll-behavior: smooth;
}

a {
text-decoration: none;

}
Empty file added assets/scss/base/_reset.scss
Empty file.
5 changes: 5 additions & 0 deletions assets/scss/layouts/_navbar.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
@use '../abstract/variable' as var;

.navbar{

}
9 changes: 9 additions & 0 deletions assets/scss/main.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
// variable
@import './abstract/variable';

// base
@import './base/global';
@import './base/reset';

//layouts
@import './layouts/navbar'
8 changes: 5 additions & 3 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Markdown Code Snippet Generator</title>
<link rel="stylesheet" href="./assets/index.css">
<link rel="stylesheet" href="./assets/css/index.css">
<link rel="shortcut icon" href="./assets/coder_markdown.svg" type="image/x-icon">

<link rel="stylesheet" href="./assets/css/main.css">

<!-- SEO Meta Tags -->
<meta name="description" content="Generate Markdown code snippets with ease.">
Expand All @@ -15,7 +15,9 @@

</head>
<body>
<nav></nav>
<nav class="navbar">

</nav>
<div class="container">
<div class="form-container">
<div class="navbar">
Expand Down

0 comments on commit 044127a

Please sign in to comment.