add web3 sticker

This commit is contained in:
2022-05-25 11:50:15 +02:00
parent d4d05ba941
commit 4a55ed1565
5 changed files with 217 additions and 34 deletions

View File

@ -22,6 +22,10 @@
z-index: 10
}
.mb-1 {
margin-bottom: 0.25rem
}
.mb-4 {
margin-bottom: 1rem
}
@ -54,6 +58,10 @@
display: inline-block
}
.inline {
display: inline
}
.flex {
display: flex
}
@ -66,6 +74,14 @@
display: contents
}
.hidden {
display: none
}
.h-12 {
height: 3rem
}
.h-full {
height: 100%
}
@ -74,6 +90,10 @@
height: 9rem
}
.w-12 {
width: 3rem
}
.w-full {
width: 100%
}
@ -86,6 +106,14 @@
flex-grow: 1
}
.cursor-pointer {
cursor: pointer
}
.list-none {
list-style-type: none
}
.flex-col {
flex-direction: column
}
@ -102,6 +130,10 @@
justify-content: center
}
.justify-between {
justify-content: space-between
}
.gap-4 {
gap: 1rem
}
@ -235,6 +267,11 @@
padding-bottom: 0.5rem
}
.py-10 {
padding-top: 2.5rem;
padding-bottom: 2.5rem
}
.py-1 {
padding-top: 0.25rem;
padding-bottom: 0.25rem
@ -245,6 +282,10 @@
padding-bottom: 0.625rem
}
.pb-4 {
padding-bottom: 1rem
}
.pb-2 {
padding-bottom: 0.5rem
}
@ -257,6 +298,11 @@
text-align: center
}
.text-base {
font-size: 1rem;
line-height: 1.5rem
}
.text-sm {
font-size: 0.875rem;
line-height: 1.25rem
@ -277,6 +323,10 @@
line-height: 2rem
}
.font-medium {
font-weight: 500
}
.font-extrabold {
font-weight: 800
}
@ -289,16 +339,21 @@
font-style: italic
}
.text-neutral-900 {
--tw-text-opacity: 1;
color: rgb(23 23 23 / var(--tw-text-opacity))
}
.text-neutral-500 {
--tw-text-opacity: 1;
color: rgb(115 115 115 / var(--tw-text-opacity))
}
.text-neutral-700 {
--tw-text-opacity: 1;
color: rgb(64 64 64 / var(--tw-text-opacity))
}
.text-neutral-900 {
--tw-text-opacity: 1;
color: rgb(23 23 23 / var(--tw-text-opacity))
}
.\!no-underline {
-webkit-text-decoration-line: none !important;
text-decoration-line: none !important
@ -344,11 +399,48 @@
color: rgb(255 255 255 / var(--tw-text-opacity))
}
.hover\:underline:hover {
-webkit-text-decoration-line: underline;
text-decoration-line: underline
}
.hover\:decoration-2:hover {
text-decoration-thickness: 2px
}
.hover\:underline-offset-2:hover {
text-underline-offset: 2px
}
.focus\:outline-none:focus {
outline: 2px solid transparent;
outline-offset: 2px
}
[dir="ltr"] .ltr\:mr-14 {
margin-right: 3.5rem
}
[dir="ltr"] .ltr\:text-right {
text-align: right
}
[dir="rtl"] .rtl\:ml-14 {
margin-left: 3.5rem
}
[dir="rtl"] .rtl\:text-left {
text-align: left
}
.dark .dark\:inline {
display: inline
}
.dark .dark\:hidden {
display: none
}
.dark .dark\:border-white {
--tw-border-opacity: 1;
border-color: rgb(255 255 255 / var(--tw-border-opacity))
@ -414,10 +506,40 @@
background-color: rgb(15 118 110 / var(--tw-bg-opacity)) !important
}
@media print {
.print\:hidden {
display: none
}
}
@media (min-width: 640px) {
.sm\:mb-0 {
margin-bottom: 0px
}
.sm\:block {
display: block
}
.sm\:flex-row {
flex-direction: row
}
[dir="ltr"] .ltr\:sm\:mr-7 {
margin-right: 1.75rem
}
[dir="ltr"] .ltr\:sm\:last\:mr-0:last-child {
margin-right: 0px
}
[dir="rtl"] .rtl\:sm\:ml-7 {
margin-left: 1.75rem
}
[dir="rtl"] .rtl\:sm\:last\:ml-0:last-child {
margin-left: 0px
}
}
@media (min-width: 768px) {