Skip to content

Commit

Permalink
feat: add more updates
Browse files Browse the repository at this point in the history
  • Loading branch information
hmajid2301 committed Oct 10, 2024
1 parent 7f3f507 commit 7ed7b0e
Show file tree
Hide file tree
Showing 4 changed files with 265 additions and 139 deletions.
66 changes: 34 additions & 32 deletions assets/css/core/reset.css
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
*,
::after,
::before {
box-sizing: border-box;
box-sizing: border-box;
}

html {
-webkit-tap-highlight-color: transparent;
overflow-y: scroll;
/* -webkit-font-smoothing: antialiased;
-webkit-tap-highlight-color: transparent;
overflow-y: scroll;
/* -webkit-font-smoothing: antialiased;
text-rendering: optimizeLegibility; */
}

Expand All @@ -20,15 +20,17 @@ h3,
h4,
h5,
h6 {
color: var(--primary);
color: var(--primary);
}

body {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
font-size: 18px;
line-height: 1.6em;
word-break: break-word;
background: var(--theme);
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen",
"Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue",
sans-serif;
font-size: 18px;
line-height: 1.6em;
word-break: break-word;
background: var(--theme);
}

article,
Expand All @@ -42,7 +44,7 @@ main,
nav,
section,
table {
display: block;
display: block;
}

h1,
Expand All @@ -51,7 +53,7 @@ h3,
h4,
h5,
h6 {
line-height: 1.2;
line-height: 1.2;
}

h1,
Expand All @@ -61,53 +63,53 @@ h4,
h5,
h6,
p {
margin-top: 0;
margin-bottom: 0;
margin-top: 0;
margin-bottom: 0;
}

a {
text-decoration: none;
text-decoration: none;
}

body,
figure {
margin: 0;
margin: 0;
}

table {
width: 100%;
border-collapse: collapse;
border-spacing: 0;
overflow-x: auto;
word-break: keep-all;
width: 100%;
border-collapse: collapse;
border-spacing: 0;
overflow-x: auto;
word-break: keep-all;
}

button,
input,
textarea {
padding: 0;
font: inherit;
background: 0 0;
border: 0;
padding: 0;
font: inherit;
background: 0 0;
border: 0;
}

input,
textarea {
outline: 0;
outline: 0;
}

button,
input[type=button],
input[type=submit] {
cursor: pointer;
input[type="button"],
input[type="submit"] {
cursor: pointer;
}

input:-webkit-autofill,
textarea:-webkit-autofill {
box-shadow: 0 0 0 50px var(--theme) inset;
box-shadow: 0 0 0 50px var(--theme) inset;
}

img {
display: block;
max-width: 100%;
display: block;
max-width: 100%;
}
Loading

0 comments on commit 7ed7b0e

Please sign in to comment.