Skip to content

Commit

Permalink
basic css skeleton structured
Browse files Browse the repository at this point in the history
  • Loading branch information
nuhainul committed Jan 15, 2024
1 parent 1009923 commit 6b1a54a
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 0 deletions.
9 changes: 9 additions & 0 deletions css/responsive.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
/* styles for medium devices (optional) */
@media screen and (min-width: 600px) and (max-width: 992px) {

}

/* styles for mobile devices */
@media and (max-width: 600px) {

}
15 changes: 15 additions & 0 deletions css/styles.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
/* universal styles */
* {
padding: 0;
margin: 0;
}
/* root variables */
:root {
--primary-color: blue;
--text-color: black;
}

/* shared styles */

/* customized styles */

0 comments on commit 6b1a54a

Please sign in to comment.