Skip to content

Commit

Permalink
Tailwind css
Browse files Browse the repository at this point in the history
  • Loading branch information
beamercola committed Feb 24, 2024
1 parent 786a5b5 commit 1f2cac3
Showing 1 changed file with 66 additions and 7 deletions.
73 changes: 66 additions & 7 deletions assets/app.css
Original file line number Diff line number Diff line change
Expand Up @@ -44,9 +44,10 @@ html,
-moz-tab-size: 4;
/* 3 */
-o-tab-size: 4;
tab-size: 4;
tab-size: 4;
/* 3 */
font-family: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
font-family: ui-sans-serif, system-ui, sans-serif, 'Apple Color Emoji',
'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji';
/* 4 */
font-feature-settings: normal;
/* 5 */
Expand Down Expand Up @@ -89,7 +90,7 @@ Add the correct text decoration in Chrome, Edge, and Safari.

abbr:where([title]) {
-webkit-text-decoration: underline dotted;
text-decoration: underline dotted;
text-decoration: underline dotted;
}

/*
Expand Down Expand Up @@ -135,7 +136,8 @@ code,
kbd,
samp,
pre {
font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas,
'Liberation Mono', 'Courier New', monospace;
/* 1 */
font-feature-settings: normal;
/* 2 */
Expand Down Expand Up @@ -376,7 +378,8 @@ textarea {
2. Set the default placeholder color to the user's configured gray 400 color.
*/

input::-moz-placeholder, textarea::-moz-placeholder {
input::-moz-placeholder,
textarea::-moz-placeholder {
opacity: 1;
/* 1 */
color: #9ca3af;
Expand All @@ -396,7 +399,7 @@ Set the default cursor for buttons.
*/

button,
[role="button"] {
[role='button'] {
cursor: pointer;
}

Expand Down Expand Up @@ -444,7 +447,9 @@ video {
display: none;
}

*, ::before, ::after {
*,
::before,
::after {
--tw-border-spacing-x: 0;
--tw-border-spacing-y: 0;
--tw-translate-x: 0;
Expand Down Expand Up @@ -543,3 +548,57 @@ video {
--tw-backdrop-saturate: ;
--tw-backdrop-sepia: ;
}

.twcss-container {
width: 100%;
}

@media (min-width: 320px) {
.twcss-container {
max-width: 320px;
}
}

@media (min-width: 750px) {
.twcss-container {
max-width: 750px;
}
}

@media (min-width: 990px) {
.twcss-container {
max-width: 990px;
}
}

@media (min-width: 1440px) {
.twcss-container {
max-width: 1440px;
}
}

@media (min-width: 1920px) {
.twcss-container {
max-width: 1920px;
}
}

.twcss-flex {
display: flex;
}

.twcss-hidden {
display: none;
}

.twcss-flex-row-reverse {
flex-direction: row-reverse;
}

.twcss-items-start {
align-items: flex-start;
}

.twcss-gap-32 {
gap: 8rem;
}

0 comments on commit 1f2cac3

Please sign in to comment.