Skip to content

Commit

Permalink
Added new themes and changed design
Browse files Browse the repository at this point in the history
  • Loading branch information
zigazajc007 committed Jun 27, 2022
1 parent d59bc0f commit 3e5fda8
Show file tree
Hide file tree
Showing 15 changed files with 856 additions and 63 deletions.
81 changes: 51 additions & 30 deletions package-lock.json

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

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "passky-website",
"description": "Website for Passky (password manager)",
"version": "6.1.0",
"version": "6.2.0",
"main": "tailwind.config.js",
"scripts": {
"build": "npx tailwindcss -i ./tailwind.css -o ./website/css/tailwind.min.css"
Expand Down
130 changes: 123 additions & 7 deletions website/css/tailwind.min.css
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
! tailwindcss v3.0.24 | MIT License | https://tailwindcss.com
! tailwindcss v3.1.4 | MIT License | https://tailwindcss.com
*/

/*
Expand Down Expand Up @@ -187,6 +187,8 @@ textarea {
/* 1 */
font-size: 100%;
/* 1 */
font-weight: inherit;
/* 1 */
line-height: inherit;
/* 1 */
color: inherit;
Expand Down Expand Up @@ -415,15 +417,103 @@ video {
height: auto;
}

/*
Ensure the default browser behavior of the `hidden` attribute.
*/
*, ::before, ::after {
--tw-border-spacing-x: 0;
--tw-border-spacing-y: 0;
--tw-translate-x: 0;
--tw-translate-y: 0;
--tw-rotate: 0;
--tw-skew-x: 0;
--tw-skew-y: 0;
--tw-scale-x: 1;
--tw-scale-y: 1;
--tw-pan-x: ;
--tw-pan-y: ;
--tw-pinch-zoom: ;
--tw-scroll-snap-strictness: proximity;
--tw-ordinal: ;
--tw-slashed-zero: ;
--tw-numeric-figure: ;
--tw-numeric-spacing: ;
--tw-numeric-fraction: ;
--tw-ring-inset: ;
--tw-ring-offset-width: 0px;
--tw-ring-offset-color: #fff;
--tw-ring-color: rgb(59 130 246 / 0.5);
--tw-ring-offset-shadow: 0 0 #0000;
--tw-ring-shadow: 0 0 #0000;
--tw-shadow: 0 0 #0000;
--tw-shadow-colored: 0 0 #0000;
--tw-blur: ;
--tw-brightness: ;
--tw-contrast: ;
--tw-grayscale: ;
--tw-hue-rotate: ;
--tw-invert: ;
--tw-saturate: ;
--tw-sepia: ;
--tw-drop-shadow: ;
--tw-backdrop-blur: ;
--tw-backdrop-brightness: ;
--tw-backdrop-contrast: ;
--tw-backdrop-grayscale: ;
--tw-backdrop-hue-rotate: ;
--tw-backdrop-invert: ;
--tw-backdrop-opacity: ;
--tw-backdrop-saturate: ;
--tw-backdrop-sepia: ;
}

[hidden] {
display: none;
::-webkit-backdrop {
--tw-border-spacing-x: 0;
--tw-border-spacing-y: 0;
--tw-translate-x: 0;
--tw-translate-y: 0;
--tw-rotate: 0;
--tw-skew-x: 0;
--tw-skew-y: 0;
--tw-scale-x: 1;
--tw-scale-y: 1;
--tw-pan-x: ;
--tw-pan-y: ;
--tw-pinch-zoom: ;
--tw-scroll-snap-strictness: proximity;
--tw-ordinal: ;
--tw-slashed-zero: ;
--tw-numeric-figure: ;
--tw-numeric-spacing: ;
--tw-numeric-fraction: ;
--tw-ring-inset: ;
--tw-ring-offset-width: 0px;
--tw-ring-offset-color: #fff;
--tw-ring-color: rgb(59 130 246 / 0.5);
--tw-ring-offset-shadow: 0 0 #0000;
--tw-ring-shadow: 0 0 #0000;
--tw-shadow: 0 0 #0000;
--tw-shadow-colored: 0 0 #0000;
--tw-blur: ;
--tw-brightness: ;
--tw-contrast: ;
--tw-grayscale: ;
--tw-hue-rotate: ;
--tw-invert: ;
--tw-saturate: ;
--tw-sepia: ;
--tw-drop-shadow: ;
--tw-backdrop-blur: ;
--tw-backdrop-brightness: ;
--tw-backdrop-contrast: ;
--tw-backdrop-grayscale: ;
--tw-backdrop-hue-rotate: ;
--tw-backdrop-invert: ;
--tw-backdrop-opacity: ;
--tw-backdrop-saturate: ;
--tw-backdrop-sepia: ;
}

*, ::before, ::after {
::backdrop {
--tw-border-spacing-x: 0;
--tw-border-spacing-y: 0;
--tw-translate-x: 0;
--tw-translate-y: 0;
--tw-rotate: 0;
Expand Down Expand Up @@ -523,6 +613,10 @@ Ensure the default browser behavior of the `hidden` attribute.
z-index: 10;
}

.z-0 {
z-index: 0;
}

.col-span-1 {
grid-column: span 1 / span 1;
}
Expand Down Expand Up @@ -569,6 +663,10 @@ Ensure the default browser behavior of the `hidden` attribute.
margin-top: 1.25rem;
}

.ml-0 {
margin-left: 0px;
}

.mt-8 {
margin-top: 2rem;
}
Expand Down Expand Up @@ -918,6 +1016,16 @@ Ensure the default browser behavior of the `hidden` attribute.
border-bottom-left-radius: 0.375rem;
}

.rounded-l-md {
border-top-left-radius: 0.375rem;
border-bottom-left-radius: 0.375rem;
}

.rounded-r-md {
border-top-right-radius: 0.375rem;
border-bottom-right-radius: 0.375rem;
}

.rounded-bl-md {
border-bottom-left-radius: 0.375rem;
}
Expand Down Expand Up @@ -1118,6 +1226,10 @@ Ensure the default browser behavior of the `hidden` attribute.
font-weight: 700;
}

.uppercase {
text-transform: uppercase;
}

.leading-6 {
line-height: 1.5rem;
}
Expand Down Expand Up @@ -1298,6 +1410,10 @@ Ensure the default browser behavior of the `hidden` attribute.
margin-left: 2.5rem;
}

.sm\:ml-2 {
margin-left: 0.5rem;
}

.sm\:ml-3 {
margin-left: 0.75rem;
}
Expand Down
Loading

0 comments on commit 3e5fda8

Please sign in to comment.