2 Commits
1.0.4 ... 1.0.6

Author SHA1 Message Date
344585e6dc Fixed some of the fixes
All checks were successful
Publish Library / Publish CDN & Docs (push) Successful in 20s
Publish Library / Tag Version (push) Successful in 6s
Publish Library / Build NPM Project (push) Successful in 17s
2024-11-23 21:39:26 -05:00
0ec350aae7 Fixed colors
All checks were successful
Publish Library / Build NPM Project (push) Successful in 11s
Publish Library / Tag Version (push) Successful in 5s
Publish Library / Publish CDN & Docs (push) Successful in 19s
2024-11-19 20:36:06 -05:00
3 changed files with 15 additions and 23 deletions

4
package-lock.json generated
View File

@ -1,12 +1,12 @@
{
"name": "@ztimson/css-utils",
"version": "1.0.4",
"version": "1.0.5",
"lockfileVersion": 3,
"requires": true,
"packages": {
"": {
"name": "@ztimson/css-utils",
"version": "1.0.4",
"version": "1.0.5",
"license": "MIT",
"devDependencies": {
"sass": "^1.80.6"

View File

@ -1,6 +1,6 @@
{
"name": "@ztimson/css-utils",
"version": "1.0.4",
"version": "1.0.6",
"description": "CSS Utility Classes",
"readme": "README.md",
"scripts": {

View File

@ -61,15 +61,6 @@ $divisible: (0, 10, 20, 25, 30, 33, 34, 40, 50, 60, 66, 70, 75, 80, 90, 100);
}
}
.fix-code code, code.fix {
display: block;
white-space: pre;
font-family: monospace;
background: rgb(30, 30, 30);
color: #00cb00;
overflow: auto;
}
.fix-dom, .fix {
&, html, body {
height: 100%;
@ -86,24 +77,27 @@ $divisible: (0, 10, 20, 25, 30, 33, 34, 40, 50, 60, 66, 70, 75, 80, 90, 100);
width: 100%;
opacity: 50%;
}
* { box-sizing: border-box; }
}
.fix-focus, .fix {
* {
outline: none !important;
box-shadow: none !important;
outline: inherit;
}
}
.fix-font, .fix {
* { font-family: var(--theme-font), sans-serif; }
p, input, select, textarea, button { font-size: 1rem; }
span { font-size: inherit; }
h1, h2, h3, h4, h5, h6, p {
margin-top: 0;
margin-bottom: 0.5rem;
color: var(--theme-text);
font-family: var(--theme-font), sans-serif;
* {
font-family: inherit;
font-size: inherit;
}
p, input, select, textarea, button { font-size: 1rem; }
h1, h2, h3, h4, h5, h6, p { margin: 0 0 0.5rem 0; }
h1 { font-weight: 500; font-size: 2.5rem; }
h2 { font-weight: 500; font-size: 2rem; }
h3 { font-weight: 500; font-size: 1.75rem; }
@ -112,8 +106,6 @@ $divisible: (0, 10, 20, 25, 30, 33, 34, 40, 50, 60, 66, 70, 75, 80, 90, 100);
h6 { font-weight: 500; font-size: 1rem; }
}
option { color: black !important; }
// Misc =====================================================================================================
// Center
@ -187,7 +179,7 @@ option { color: black !important; }
right: 0;
bottom: 0;
background-color: var(--theme-#{$color});
filter: saturate(.5) brightness(250%);
filter: saturate(.5) brightness(150%);
border-radius: inherit;
z-index: -1;
}