diff --git a/CHANGELOG.md b/CHANGELOG.md index 559ba5e..c5771bc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,4 @@ -# 0.1.0 (2021-11-05) +# 0.1.0 (2021-11-08) ### 🌟 新功能 范围|描述|commitId @@ -67,6 +67,7 @@ - | 缓存修改 | [63e1f0d](https://dd.tall.wiki/gitea/binbin0314/yanyuan_js/commits/63e1f0d) - | 获取用户收取那,提交用户信息 | [a3c54f1](https://dd.tall.wiki/gitea/binbin0314/yanyuan_js/commits/a3c54f1) - | 角色栏实现 | [94cd671](https://dd.tall.wiki/gitea/binbin0314/yanyuan_js/commits/94cd671) + - | 训练归属界面 | [4c34cee](https://dd.tall.wiki/gitea/binbin0314/yanyuan_js/commits/4c34cee) - | 设置小红点 | [9316bcb](https://dd.tall.wiki/gitea/binbin0314/yanyuan_js/commits/9316bcb) - | 设置界面基本信息板块开发 | [bbaded0](https://dd.tall.wiki/gitea/binbin0314/yanyuan_js/commits/bbaded0) - | 距调整pc端 | [5069aa1](https://dd.tall.wiki/gitea/binbin0314/yanyuan_js/commits/5069aa1) diff --git a/src/common/styles/tailwind.scss b/src/common/styles/tailwind.scss index bcb9e8f..ce67b68 100644 --- a/src/common/styles/tailwind.scss +++ b/src/common/styles/tailwind.scss @@ -319,4238 +319,2677 @@ clear: none; } -.m-0 { - margin: 0px; +.border-t { + border-top: 1px solid #f8f8f8; } -.m-1 { - margin: 0.25rem; +.border-b { + border-bottom: 1px solid #f8f8f8; } -.m-2 { - margin: 0.5rem; +.box-border { + box-sizing: border-box; } -.m-3 { - margin: 0.75rem; +.box-content { + box-sizing: content-box; } -.m-4 { - margin: 1rem; +.block { + display: block; } -.m-5 { - margin: 1.25rem; +.inline-block { + display: inline-block; } -.m-6 { - margin: 1.5rem; +.inline { + display: inline; } -.m-7 { - margin: 1.75rem; +.flex { + display: flex; } -.m-8 { - margin: 2rem; +.inline-flex { + display: inline-flex; } -.m-9 { - margin: 2.25rem; +.grid { + display: grid; } -.m-10 { - margin: 2.5rem; +.inline-grid { + display: inline-grid; } -.m-11 { - margin: 2.75rem; +.contents { + display: contents; } -.m-12 { - margin: 3rem; +.list-item { + display: list-item; } -.m-14 { - margin: 3.5rem; +.hidden { + display: none; } -.m-16 { - margin: 4rem; +.flex-1 { + flex: 1 1 0%; } -.m-20 { - margin: 5rem; +.flex-auto { + flex: 1 1 auto; } -.m-24 { - margin: 6rem; +.flex-initial { + flex: 0 1 auto; } -.m-28 { - margin: 7rem; +.flex-none { + flex: none; } -.m-32 { - margin: 8rem; +.flex-shrink-0 { + flex-shrink: 0; } -.m-36 { - margin: 9rem; +.flex-shrink { + flex-shrink: 1; } -.m-40 { - margin: 10rem; +.flex-grow-0 { + flex-grow: 0; } -.m-44 { - margin: 11rem; +.flex-grow { + flex-grow: 1; } -.m-48 { - margin: 12rem; +@keyframes spin { + to { + transform: rotate(360deg); + } } -.m-52 { - margin: 13rem; +@keyframes ping { + 75%, + 100% { + transform: scale(2); + opacity: 0; + } } -.m-56 { - margin: 14rem; +@keyframes pulse { + 50% { + opacity: 0.5; + } } -.m-60 { - margin: 15rem; +@keyframes bounce { + 0%, + 100% { + transform: translateY(-25%); + animation-timing-function: cubic-bezier(0.8, 0, 1, 1); + } + + 50% { + transform: none; + animation-timing-function: cubic-bezier(0, 0, 0.2, 1); + } } -.m-64 { - margin: 16rem; +.animate-none { + animation: none; } -.m-72 { - margin: 18rem; +.animate-spin { + animation: spin 1s linear infinite; } -.m-80 { - margin: 20rem; +.animate-ping { + animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite; } -.m-96 { - margin: 24rem; +.animate-pulse { + animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite; } -.m-auto { - margin: auto; +.animate-bounce { + animation: bounce 1s infinite; } -.m-px { - margin: 1px; +.cursor-auto { + cursor: auto; } -.-m-0 { - margin: 0px; +.cursor-default { + cursor: default; } -.-m-1 { - margin: -0.25rem; +.cursor-pointer { + cursor: pointer; } -.-m-2 { - margin: -0.5rem; +.cursor-wait { + cursor: wait; } -.-m-3 { - margin: -0.75rem; +.cursor-text { + cursor: text; } -.-m-4 { - margin: -1rem; +.cursor-move { + cursor: move; } -.-m-5 { - margin: -1.25rem; +.cursor-help { + cursor: help; } -.-m-6 { - margin: -1.5rem; +.cursor-not-allowed { + cursor: not-allowed; } -.-m-7 { - margin: -1.75rem; +.select-none { + -webkit-user-select: none; + user-select: none; } -.-m-8 { - margin: -2rem; +.select-text { + -webkit-user-select: text; + user-select: text; } -.-m-9 { - margin: -2.25rem; +.select-all { + -webkit-user-select: all; + user-select: all; } -.-m-10 { - margin: -2.5rem; +.select-auto { + -webkit-user-select: auto; + user-select: auto; } -.-m-11 { - margin: -2.75rem; +.auto-cols-auto { + grid-auto-columns: auto; } -.-m-12 { - margin: -3rem; +.auto-cols-min { + grid-auto-columns: min-content; } -.-m-14 { - margin: -3.5rem; +.auto-cols-max { + grid-auto-columns: max-content; } -.-m-16 { - margin: -4rem; +.auto-cols-fr { + grid-auto-columns: minmax(0, 1fr); } -.-m-20 { - margin: -5rem; +.grid-flow-row { + grid-auto-flow: row; } -.-m-24 { - margin: -6rem; +.grid-flow-col { + grid-auto-flow: column; } -.-m-28 { - margin: -7rem; +.grid-flow-row-dense { + grid-auto-flow: row dense; } -.-m-32 { - margin: -8rem; +.grid-flow-col-dense { + grid-auto-flow: column dense; } -.-m-36 { - margin: -9rem; +.auto-rows-auto { + grid-auto-rows: auto; } -.-m-40 { - margin: -10rem; +.auto-rows-min { + grid-auto-rows: min-content; } -.-m-44 { - margin: -11rem; +.auto-rows-max { + grid-auto-rows: max-content; } -.-m-48 { - margin: -12rem; +.auto-rows-fr { + grid-auto-rows: minmax(0, 1fr); } -.-m-52 { - margin: -13rem; +.grid-cols-1 { + grid-template-columns: repeat(1, minmax(0, 1fr)); } -.-m-56 { - margin: -14rem; +.grid-cols-2 { + grid-template-columns: repeat(2, minmax(0, 1fr)); } -.-m-60 { - margin: -15rem; +.grid-cols-3 { + grid-template-columns: repeat(3, minmax(0, 1fr)); } -.-m-64 { - margin: -16rem; +.grid-cols-4 { + grid-template-columns: repeat(4, minmax(0, 1fr)); } -.-m-72 { - margin: -18rem; +.grid-cols-5 { + grid-template-columns: repeat(5, minmax(0, 1fr)); } -.-m-80 { - margin: -20rem; +.grid-cols-6 { + grid-template-columns: repeat(6, minmax(0, 1fr)); } -.-m-96 { - margin: -24rem; +.grid-cols-7 { + grid-template-columns: repeat(7, minmax(0, 1fr)); } -.-m-px { - margin: -1px; +.grid-cols-8 { + grid-template-columns: repeat(8, minmax(0, 1fr)); } -.mx-0 { - margin-left: 0px; - margin-right: 0px; +.grid-cols-9 { + grid-template-columns: repeat(9, minmax(0, 1fr)); } -.mx-1 { - margin-left: 0.25rem; - margin-right: 0.25rem; +.grid-cols-10 { + grid-template-columns: repeat(10, minmax(0, 1fr)); } -.mx-2 { - margin-left: 0.5rem; - margin-right: 0.5rem; +.grid-cols-11 { + grid-template-columns: repeat(11, minmax(0, 1fr)); } -.mx-3 { - margin-left: 0.75rem; - margin-right: 0.75rem; +.grid-cols-12 { + grid-template-columns: repeat(12, minmax(0, 1fr)); } -.mx-4 { - margin-left: 1rem; - margin-right: 1rem; +.grid-cols-none { + grid-template-columns: none; } -.mx-5 { - margin-left: 1.25rem; - margin-right: 1.25rem; +.grid-rows-1 { + grid-template-rows: repeat(1, minmax(0, 1fr)); } -.mx-6 { - margin-left: 1.5rem; - margin-right: 1.5rem; +.grid-rows-2 { + grid-template-rows: repeat(2, minmax(0, 1fr)); } -.mx-7 { - margin-left: 1.75rem; - margin-right: 1.75rem; +.grid-rows-3 { + grid-template-rows: repeat(3, minmax(0, 1fr)); } -.mx-8 { - margin-left: 2rem; - margin-right: 2rem; +.grid-rows-4 { + grid-template-rows: repeat(4, minmax(0, 1fr)); } -.mx-9 { - margin-left: 2.25rem; - margin-right: 2.25rem; +.grid-rows-5 { + grid-template-rows: repeat(5, minmax(0, 1fr)); } -.mx-10 { - margin-left: 2.5rem; - margin-right: 2.5rem; +.grid-rows-6 { + grid-template-rows: repeat(6, minmax(0, 1fr)); } -.mx-11 { - margin-left: 2.75rem; - margin-right: 2.75rem; +.grid-rows-none { + grid-template-rows: none; } -.mx-12 { - margin-left: 3rem; - margin-right: 3rem; +.flex-row { + flex-direction: row; } -.mx-14 { - margin-left: 3.5rem; - margin-right: 3.5rem; +.flex-row-reverse { + flex-direction: row-reverse; } -.mx-16 { - margin-left: 4rem; - margin-right: 4rem; +.flex-col { + flex-direction: column; } -.mx-20 { - margin-left: 5rem; - margin-right: 5rem; +.flex-col-reverse { + flex-direction: column-reverse; } -.mx-24 { - margin-left: 6rem; - margin-right: 6rem; +.flex-wrap { + flex-wrap: wrap; } -.mx-28 { - margin-left: 7rem; - margin-right: 7rem; +.flex-wrap-reverse { + flex-wrap: wrap-reverse; } -.mx-32 { - margin-left: 8rem; - margin-right: 8rem; +.flex-nowrap { + flex-wrap: nowrap; } -.mx-36 { - margin-left: 9rem; - margin-right: 9rem; +.content-center { + align-content: center; } -.mx-40 { - margin-left: 10rem; - margin-right: 10rem; +.content-start { + align-content: flex-start; } -.mx-44 { - margin-left: 11rem; - margin-right: 11rem; +.content-end { + align-content: flex-end; } -.mx-48 { - margin-left: 12rem; - margin-right: 12rem; +.content-between { + align-content: space-between; } -.mx-52 { - margin-left: 13rem; - margin-right: 13rem; +.content-around { + align-content: space-around; } -.mx-56 { - margin-left: 14rem; - margin-right: 14rem; +.content-evenly { + align-content: space-evenly; } -.mx-60 { - margin-left: 15rem; - margin-right: 15rem; +.items-start { + align-items: flex-start; } -.mx-64 { - margin-left: 16rem; - margin-right: 16rem; +.items-end { + align-items: flex-end; } -.mx-72 { - margin-left: 18rem; - margin-right: 18rem; +.items-center { + align-items: center; } -.mx-80 { - margin-left: 20rem; - margin-right: 20rem; +.items-baseline { + align-items: baseline; } -.mx-96 { - margin-left: 24rem; - margin-right: 24rem; +.items-stretch { + align-items: stretch; } -.mx-auto { - margin-left: auto; - margin-right: auto; +.justify-start { + justify-content: flex-start; } -.mx-px { - margin-left: 1px; - margin-right: 1px; +.justify-end { + justify-content: flex-end; } -.-mx-0 { - margin-left: 0px; - margin-right: 0px; +.justify-center { + justify-content: center; } -.-mx-1 { - margin-left: -0.25rem; - margin-right: -0.25rem; +.justify-between { + justify-content: space-between; } -.-mx-2 { - margin-left: -0.5rem; - margin-right: -0.5rem; +.justify-around { + justify-content: space-around; } -.-mx-3 { - margin-left: -0.75rem; - margin-right: -0.75rem; +.justify-evenly { + justify-content: space-evenly; } -.-mx-4 { - margin-left: -1rem; - margin-right: -1rem; +.justify-items-start { + justify-items: start; } -.-mx-5 { - margin-left: -1.25rem; - margin-right: -1.25rem; +.justify-items-end { + justify-items: end; } -.-mx-6 { - margin-left: -1.5rem; - margin-right: -1.5rem; +.justify-items-center { + justify-items: center; } -.-mx-7 { - margin-left: -1.75rem; - margin-right: -1.75rem; +.justify-items-stretch { + justify-items: stretch; } -.-mx-8 { - margin-left: -2rem; - margin-right: -2rem; +.self-auto { + align-self: auto; } -.-mx-9 { - margin-left: -2.25rem; - margin-right: -2.25rem; +.self-start { + align-self: flex-start; } -.-mx-10 { - margin-left: -2.5rem; - margin-right: -2.5rem; +.self-end { + align-self: flex-end; } -.-mx-11 { - margin-left: -2.75rem; - margin-right: -2.75rem; +.self-center { + align-self: center; } -.-mx-12 { - margin-left: -3rem; - margin-right: -3rem; +.self-stretch { + align-self: stretch; } -.-mx-14 { - margin-left: -3.5rem; - margin-right: -3.5rem; +.self-baseline { + align-self: baseline; } -.-mx-16 { - margin-left: -4rem; - margin-right: -4rem; +.justify-self-auto { + justify-self: auto; } -.-mx-20 { - margin-left: -5rem; - margin-right: -5rem; +.justify-self-start { + justify-self: start; } -.-mx-24 { - margin-left: -6rem; - margin-right: -6rem; +.justify-self-end { + justify-self: end; } -.-mx-28 { - margin-left: -7rem; - margin-right: -7rem; +.justify-self-center { + justify-self: center; } -.-mx-32 { - margin-left: -8rem; - margin-right: -8rem; +.justify-self-stretch { + justify-self: stretch; } -.-mx-36 { - margin-left: -9rem; - margin-right: -9rem; +.overflow-auto { + overflow: auto; } -.-mx-40 { - margin-left: -10rem; - margin-right: -10rem; +.overflow-hidden { + overflow: hidden; } -.-mx-44 { - margin-left: -11rem; - margin-right: -11rem; +.overflow-visible { + overflow: visible; } -.-mx-48 { - margin-left: -12rem; - margin-right: -12rem; +.overflow-scroll { + overflow: scroll; } -.-mx-52 { - margin-left: -13rem; - margin-right: -13rem; +.overflow-x-auto { + overflow-x: auto; } -.-mx-56 { - margin-left: -14rem; - margin-right: -14rem; +.overflow-y-auto { + overflow-y: auto; } -.-mx-60 { - margin-left: -15rem; - margin-right: -15rem; +.overflow-x-hidden { + overflow-x: hidden; } -.-mx-64 { - margin-left: -16rem; - margin-right: -16rem; +.overflow-y-hidden { + overflow-y: hidden; } -.-mx-72 { - margin-left: -18rem; - margin-right: -18rem; +.overflow-x-visible { + overflow-x: visible; } -.-mx-80 { - margin-left: -20rem; - margin-right: -20rem; +.overflow-y-visible { + overflow-y: visible; } -.-mx-96 { - margin-left: -24rem; - margin-right: -24rem; +.overflow-x-scroll { + overflow-x: scroll; } -.-mx-px { - margin-left: -1px; - margin-right: -1px; +.overflow-y-scroll { + overflow-y: scroll; } - -.my-0 { - margin-top: 0px; - margin-bottom: 0px; +.truncate { + overflow: hidden; + text-overflow: ellipsis; + white-space: nowrap; } -.my-1 { - margin-top: 0.25rem; - margin-bottom: 0.25rem; +.overflow-ellipsis { + text-overflow: ellipsis; } -.my-2 { - margin-top: 0.5rem; - margin-bottom: 0.5rem; +.text-left { + text-align: left; } -.my-3 { - margin-top: 0.75rem; - margin-bottom: 0.75rem; +.text-center { + text-align: center; } -.my-4 { - margin-top: 1rem; - margin-bottom: 1rem; +.text-right { + text-align: right; } -.my-5 { - margin-top: 1.25rem; - margin-bottom: 1.25rem; +.text-justify { + text-align: justify; } -.my-6 { - margin-top: 1.5rem; - margin-bottom: 1.5rem; +.align-baseline { + vertical-align: baseline; } -.my-7 { - margin-top: 1.75rem; - margin-bottom: 1.75rem; +.align-top { + vertical-align: top; } -.my-8 { - margin-top: 2rem; - margin-bottom: 2rem; +.align-middle { + vertical-align: middle; } -.my-9 { - margin-top: 2.25rem; - margin-bottom: 2.25rem; +.align-bottom { + vertical-align: bottom; } -.my-10 { - margin-top: 2.5rem; - margin-bottom: 2.5rem; +.align-text-top { + vertical-align: text-top; } -.my-11 { - margin-top: 2.75rem; - margin-bottom: 2.75rem; +.align-text-bottom { + vertical-align: text-bottom; } -.my-12 { - margin-top: 3rem; - margin-bottom: 3rem; +.font-sans { + font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, 'Noto Sans', + sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji'; } -.my-14 { - margin-top: 3.5rem; - margin-bottom: 3.5rem; +.font-serif { + font-family: ui-serif, Georgia, Cambria, 'Times New Roman', Times, serif; } -.my-16 { - margin-top: 4rem; - margin-bottom: 4rem; +.font-mono { + font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, 'Liberation Mono', 'Courier New', monospace; } -.my-20 { - margin-top: 5rem; - margin-bottom: 5rem; +.text-xs { + font-size: 0.75rem; + line-height: 1rem; } -.my-24 { - margin-top: 6rem; - margin-bottom: 6rem; +.text-sm { + font-size: 0.875rem; + line-height: 1.25rem; } -.my-28 { - margin-top: 7rem; - margin-bottom: 7rem; +.text-base { + font-size: 1rem; + line-height: 1.5rem; } -.my-32 { - margin-top: 8rem; - margin-bottom: 8rem; +.text-lg { + font-size: 1.125rem; + line-height: 1.75rem; } -.my-36 { - margin-top: 9rem; - margin-bottom: 9rem; +.text-xl { + font-size: 1.25rem; + line-height: 1.75rem; } -.my-40 { - margin-top: 10rem; - margin-bottom: 10rem; +.text-2xl { + font-size: 1.5rem; + line-height: 2rem; } -.my-44 { - margin-top: 11rem; - margin-bottom: 11rem; +.text-3xl { + font-size: 1.875rem; + line-height: 2.25rem; } -.my-48 { - margin-top: 12rem; - margin-bottom: 12rem; +.text-4xl { + font-size: 2.25rem; + line-height: 2.5rem; } -.my-52 { - margin-top: 13rem; - margin-bottom: 13rem; +.text-5xl { + font-size: 3rem; + line-height: 1; } -.my-56 { - margin-top: 14rem; - margin-bottom: 14rem; +.text-6xl { + font-size: 3.75rem; + line-height: 1; } -.my-60 { - margin-top: 15rem; - margin-bottom: 15rem; +.text-7xl { + font-size: 4.5rem; + line-height: 1; } -.my-64 { - margin-top: 16rem; - margin-bottom: 16rem; +.text-8xl { + font-size: 6rem; + line-height: 1; } -.my-72 { - margin-top: 18rem; - margin-bottom: 18rem; +.text-9xl { + font-size: 8rem; + line-height: 1; } -.my-80 { - margin-top: 20rem; - margin-bottom: 20rem; +.font-thin { + font-weight: 100; } -.my-96 { - margin-top: 24rem; - margin-bottom: 24rem; +.font-extralight { + font-weight: 200; } -.my-auto { - margin-top: auto; - margin-bottom: auto; +.font-light { + font-weight: 300; } -.my-px { - margin-top: 1px; - margin-bottom: 1px; +.font-normal { + font-weight: 400; } -.-my-0 { - margin-top: 0px; - margin-bottom: 0px; +.font-medium { + font-weight: 500; } -.-my-1 { - margin-top: -0.25rem; - margin-bottom: -0.25rem; +.font-semibold { + font-weight: 600; } -.-my-2 { - margin-top: -0.5rem; - margin-bottom: -0.5rem; +.font-bold { + font-weight: 700; } -.-my-3 { - margin-top: -0.75rem; - margin-bottom: -0.75rem; +.font-extrabold { + font-weight: 800; } -.-my-4 { - margin-top: -1rem; - margin-bottom: -1rem; +.font-black { + font-weight: 900; } -.-my-5 { - margin-top: -1.25rem; - margin-bottom: -1.25rem; +.uppercase { + text-transform: uppercase; } -.-my-6 { - margin-top: -1.5rem; - margin-bottom: -1.5rem; +.lowercase { + text-transform: lowercase; } -.-my-7 { - margin-top: -1.75rem; - margin-bottom: -1.75rem; +.capitalize { + text-transform: capitalize; } -.-my-8 { - margin-top: -2rem; - margin-bottom: -2rem; +.normal-case { + text-transform: none; } -.-my-9 { - margin-top: -2.25rem; - margin-bottom: -2.25rem; +.italic { + font-style: italic; } -.-my-10 { - margin-top: -2.5rem; - margin-bottom: -2.5rem; +.not-italic { + font-style: normal; } -.-my-11 { - margin-top: -2.75rem; - margin-bottom: -2.75rem; +.text-transparent { + color: transparent; } -.-my-12 { - margin-top: -3rem; - margin-bottom: -3rem; +.text-current { + color: currentColor; } -.-my-14 { - margin-top: -3.5rem; - margin-bottom: -3.5rem; +.text-white { + --tw-text-opacity: 1; + color: rgba(255, 255, 255, var(--tw-text-opacity)); } -.-my-16 { - margin-top: -4rem; - margin-bottom: -4rem; +.text-gray-200 { + --tw-text-opacity: 1; + color: rgba(229, 231, 235, var(--tw-text-opacity)); } -.-my-20 { - margin-top: -5rem; - margin-bottom: -5rem; +.text-gray-300 { + --tw-text-opacity: 1; + color: rgba(209, 213, 219, var(--tw-text-opacity)); } -.-my-24 { - margin-top: -6rem; - margin-bottom: -6rem; +.text-gray-350 { + --tw-text-opacity: 1; + color: rgba(192, 196, 204, var(--tw-text-opacity)); } -.-my-28 { - margin-top: -7rem; - margin-bottom: -7rem; +.text-gray-400 { + --tw-text-opacity: 1; + color: rgba(156, 163, 175, var(--tw-text-opacity)); } -.-my-32 { - margin-top: -8rem; - margin-bottom: -8rem; +.text-gray-500 { + --tw-text-opacity: 1; + color: rgba(107, 114, 128, var(--tw-text-opacity)); } -.-my-36 { - margin-top: -9rem; - margin-bottom: -9rem; +.text-red-500 { + --tw-text-opacity: 1; + color: rgba(239, 68, 68, var(--tw-text-opacity)); } -.-my-40 { - margin-top: -10rem; - margin-bottom: -10rem; +.text-green-500 { + --tw-text-opacity: 1; + color: rgba(16, 185, 129, var(--tw-text-opacity)); } -.-my-44 { - margin-top: -11rem; - margin-bottom: -11rem; +.text-blue-400 { + --tw-text-opacity: 1; + color: rgba(96, 165, 250, var(--tw-text-opacity)); } -.-my-48 { - margin-top: -12rem; - margin-bottom: -12rem; +.text-blue-500 { + --tw-text-opacity: 1; + color: rgba(59, 130, 246, var(--tw-text-opacity)); } -.-my-52 { - margin-top: -13rem; - margin-bottom: -13rem; +.opacity-0 { + opacity: 0; } -.-my-56 { - margin-top: -14rem; - margin-bottom: -14rem; +.opacity-5 { + opacity: 0.05; } -.-my-60 { - margin-top: -15rem; - margin-bottom: -15rem; +.opacity-10 { + opacity: 0.1; } -.-my-64 { - margin-top: -16rem; - margin-bottom: -16rem; +.opacity-20 { + opacity: 0.2; } -.-my-72 { - margin-top: -18rem; - margin-bottom: -18rem; +.opacity-25 { + opacity: 0.25; } -.-my-80 { - margin-top: -20rem; - margin-bottom: -20rem; +.opacity-30 { + opacity: 0.3; } -.-my-96 { - margin-top: -24rem; - margin-bottom: -24rem; +.opacity-40 { + opacity: 0.4; } -.-my-px { - margin-top: -1px; - margin-bottom: -1px; +.opacity-50 { + opacity: 0.5; } -.mt-0 { - margin-top: 0px; +.opacity-60 { + opacity: 0.6; } -.mt-1 { - margin-top: 0.25rem; +.opacity-70 { + opacity: 0.7; } -.mt-2 { - margin-top: 0.5rem; +.opacity-75 { + opacity: 0.75; } -.mt-3 { - margin-top: 0.75rem; +.opacity-80 { + opacity: 0.8; } -.mt-4 { - margin-top: 1rem; +.opacity-90 { + opacity: 0.9; } -.mt-5 { - margin-top: 1.25rem; +.opacity-95 { + opacity: 0.95; } -.mt-6 { - margin-top: 1.5rem; +.opacity-100 { + opacity: 1; } - -.mt-7 { - margin-top: 1.75rem; +.h-1 { + height: 0.25rem; } - -.mt-8 { - margin-top: 2rem; +.h-2 { + height: 0.5rem; } - -.mt-9 { - margin-top: 2.25rem; +.h-3 { + height: 0.75rem; } - -.mt-10 { - margin-top: 2.5rem; +.h-4 { + height: 1rem; } - -.mt-11 { - margin-top: 2.75rem; +.h-5 { + height: 1.25rem; } - -.mt-12 { - margin-top: 3rem; +.h-6 { + height: 1.5rem; } - -.mt-14 { - margin-top: 3.5rem; +.h-10 { + height: 2.5rem !important; } - -.mt-16 { - margin-top: 4rem; +.h-12 { + height: 3rem !important; } - -.mt-20 { - margin-top: 5rem; +.h-full { + height: 100%; } - -.mt-24 { - margin-top: 6rem; +.h-screen { + height: 100vh; } - -.mt-28 { - margin-top: 7rem; +.w-4 { + width: 1rem !important; } - -.mt-32 { - margin-top: 8rem; +.w-5 { + width: 1.25rem !important; } - -.mt-36 { - margin-top: 9rem; +.w-6 { + width: 1.5rem !important; } - -.mt-40 { - margin-top: 10rem; +.w-10 { + width: 2.5rem !important; } - -.mt-44 { - margin-top: 11rem; +.w-12 { + width: 3rem !important; } - -.mt-48 { - margin-top: 12rem; +.w-full { + width: 100% !important; } -.mt-52 { - margin-top: 13rem; +.w-screen { + width: 100vw; } -.mt-56 { - margin-top: 14rem; +.w-min { + width: min-content; } -.mt-60 { - margin-top: 15rem; +.w-max { + width: max-content; } -.mt-64 { - margin-top: 16rem; +.bg-white { + --tw-bg-opacity: 1; + background-color: rgba(255, 255, 255, var(--tw-bg-opacity)); } - -.mt-72 { - margin-top: 18rem; +.bg-blue-100 { + --tw-bg-opacity: 1; + background-color: rgba(219, 234, 254, var(--tw-bg-opacity)); } - -.mt-80 { - margin-top: 20rem; +.bg-blue-500 { + --tw-bg-opacity: 1; + background-color: rgba(59, 130, 246, var(--tw-bg-opacity)); } - -.mt-96 { - margin-top: 24rem; +.bg-gray-50 { + --tw-bg-opacity: 1; + background-color: rgba(249, 250, 251, var(--tw-bg-opacity)); } - -.mt-auto { - margin-top: auto; +.bg-gray-100 { + --tw-bg-opacity: 1; + background-color: rgba(243, 244, 246, var(--tw-bg-opacity)); } - -.mt-px { - margin-top: 1px; +.bg-red-500 { + --tw-bg-opacity: 1; + background-color: rgba(239, 68, 68, var(--tw-bg-opacity)); } - -.-mt-0 { - margin-top: 0px; +.bg-yellow-500 { + --tw-bg-opacity: 1; + background-color: rgba(245, 158, 11, var(--tw-bg-opacity)); } - -.-mt-1 { - margin-top: -0.25rem; +.text-green-400 { + --tw-text-opacity: 1; + color: rgba(52, 211, 153, var(--tw-text-opacity)); } -.-mt-2 { - margin-top: -0.5rem; +.text-white { + --tw-text-opacity: 1; + color: rgba(255, 255, 255, var(--tw-text-opacity)); } -.-mt-3 { - margin-top: -0.75rem; +.text-gray-200 { + --tw-text-opacity: 1; + color: rgba(229, 231, 235, var(--tw-text-opacity)); } -.-mt-4 { - margin-top: -1rem; +.text-gray-300 { + --tw-text-opacity: 1; + color: rgba(209, 213, 219, var(--tw-text-opacity)); } -.-mt-5 { - margin-top: -1.25rem; +.text-gray-400 { + --tw-text-opacity: 1; + color: rgba(156, 163, 175, var(--tw-text-opacity)); } -.-mt-6 { - margin-top: -1.5rem; +.text-gray-500 { + --tw-text-opacity: 1; + color: rgba(107, 114, 128, var(--tw-text-opacity)); } -.-mt-7 { - margin-top: -1.75rem; +.bg-green-100 { + --tw-bg-opacity: 1; + background-color: rgba(209, 250, 229, var(--tw-bg-opacity)); } - -.-mt-8 { - margin-top: -2rem; +.bg-blue-50 { + --tw-bg-opacity: 1; + background-color: rgba(239, 246, 255, var(--tw-bg-opacity)); } -.-mt-9 { - margin-top: -2.25rem; +.rounded-3xl { + border-radius: 1.5rem; +} +.rounded-full { + border-radius: 9999px; } -.-mt-10 { - margin-top: -2.5rem; +.shadow { + --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } -.-mt-11 { - margin-top: -2.75rem; +.shadow-md { + --tw-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } -.-mt-12 { - margin-top: -3rem; +.shadow-lg { + --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } -.-mt-14 { - margin-top: -3.5rem; +.shadow-2xl { + --tw-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } -.-mt-16 { - margin-top: -4rem; +.m-0 { + margin: 0px; } -.-mt-20 { - margin-top: -5rem; +.m-1 { + margin: 0.25rem; } -.-mt-24 { - margin-top: -6rem; +.m-2 { + margin: 0.5rem; } -.-mt-28 { - margin-top: -7rem; +.m-3 { + margin: 0.75rem; } -.-mt-32 { - margin-top: -8rem; +.m-4 { + margin: 1rem; } -.-mt-36 { - margin-top: -9rem; +.m-5 { + margin: 1.25rem; } -.-mt-40 { - margin-top: -10rem; +.m-6 { + margin: 1.5rem; } -.-mt-44 { - margin-top: -11rem; +.m-7 { + margin: 1.75rem; } -.-mt-48 { - margin-top: -12rem; +.m-8 { + margin: 2rem; } -.-mt-52 { - margin-top: -13rem; +.m-9 { + margin: 2.25rem; } -.-mt-56 { - margin-top: -14rem; +.m-10 { + margin: 2.5rem; } -.-mt-60 { - margin-top: -15rem; +.m-11 { + margin: 2.75rem; } -.-mt-64 { - margin-top: -16rem; +.m-12 { + margin: 3rem; } -.-mt-72 { - margin-top: -18rem; +.m-14 { + margin: 3.5rem; } -.-mt-80 { - margin-top: -20rem; +.m-16 { + margin: 4rem; } -.-mt-96 { - margin-top: -24rem; +.m-20 { + margin: 5rem; } -.-mt-px { - margin-top: -1px; +.m-24 { + margin: 6rem; } -.mr-0 { - margin-right: 0px; +.m-28 { + margin: 7rem; } -.mr-1 { - margin-right: 0.25rem; +.m-auto { + margin: auto; } -.mr-2 { - margin-right: 0.5rem; +.m-px { + margin: 1px; } -.mr-3 { - margin-right: 0.75rem; +.-m-0 { + margin: 0px; } -.mr-4 { - margin-right: 1rem; +.-m-1 { + margin: -0.25rem; } -.mr-5 { - margin-right: 1.25rem; +.-m-2 { + margin: -0.5rem; } -.mr-6 { - margin-right: 1.5rem; +.-m-3 { + margin: -0.75rem; } -.mr-7 { - margin-right: 1.75rem; +.-m-4 { + margin: -1rem; } -.mr-8 { - margin-right: 2rem; +.-m-5 { + margin: -1.25rem; } -.mr-9 { - margin-right: 2.25rem; +.-m-6 { + margin: -1.5rem; } -.mr-10 { - margin-right: 2.5rem; -} - -.mr-11 { - margin-right: 2.75rem; -} - -.mr-12 { - margin-right: 3rem; +.-m-7 { + margin: -1.75rem; } -.mr-14 { - margin-right: 3.5rem; +.-m-8 { + margin: -2rem; } -.mr-16 { - margin-right: 4rem; +.-m-9 { + margin: -2.25rem; } -.mr-20 { - margin-right: 5rem; +.-m-10 { + margin: -2.5rem; } -.mr-24 { - margin-right: 6rem; +.-m-11 { + margin: -2.75rem; } -.mr-28 { - margin-right: 7rem; +.-m-12 { + margin: -3rem; } -.mr-32 { - margin-right: 8rem; +.-m-14 { + margin: -3.5rem; } -.mr-36 { - margin-right: 9rem; +.-m-16 { + margin: -4rem; } -.mr-40 { - margin-right: 10rem; +.-m-20 { + margin: -5rem; } -.mr-44 { - margin-right: 11rem; +.-m-24 { + margin: -6rem; } -.mr-48 { - margin-right: 12rem; +.-m-28 { + margin: -7rem; } -.mr-52 { - margin-right: 13rem; +.-m-px { + margin: -1px; } -.mr-56 { - margin-right: 14rem; +.mx-0 { + margin-left: 0px; + margin-right: 0px; } -.mr-60 { - margin-right: 15rem; +.mx-1 { + margin-left: 0.25rem; + margin-right: 0.25rem; } -.mr-64 { - margin-right: 16rem; +.mx-2 { + margin-left: 0.5rem; + margin-right: 0.5rem; } -.mr-72 { - margin-right: 18rem; +.mx-3 { + margin-left: 0.75rem; + margin-right: 0.75rem; } -.mr-80 { - margin-right: 20rem; +.mx-4 { + margin-left: 1rem; + margin-right: 1rem; } -.mr-96 { - margin-right: 24rem; +.mx-5 { + margin-left: 1.25rem; + margin-right: 1.25rem; } -.mr-auto { - margin-right: auto; +.mx-6 { + margin-left: 1.5rem; + margin-right: 1.5rem; } -.mr-px { - margin-right: 1px; +.mx-7 { + margin-left: 1.75rem; + margin-right: 1.75rem; } -.-mr-0 { - margin-right: 0px; +.mx-8 { + margin-left: 2rem; + margin-right: 2rem; } -.-mr-1 { - margin-right: -0.25rem; +.mx-9 { + margin-left: 2.25rem; + margin-right: 2.25rem; } -.-mr-2 { - margin-right: -0.5rem; +.mx-10 { + margin-left: 2.5rem; + margin-right: 2.5rem; } -.-mr-3 { - margin-right: -0.75rem; +.mx-11 { + margin-left: 2.75rem; + margin-right: 2.75rem; } -.-mr-4 { - margin-right: -1rem; +.mx-12 { + margin-left: 3rem; + margin-right: 3rem; } -.-mr-5 { - margin-right: -1.25rem; +.mx-14 { + margin-left: 3.5rem; + margin-right: 3.5rem; } -.-mr-6 { - margin-right: -1.5rem; +.mx-16 { + margin-left: 4rem; + margin-right: 4rem; } -.-mr-7 { - margin-right: -1.75rem; +.mx-20 { + margin-left: 5rem; + margin-right: 5rem; } -.-mr-8 { - margin-right: -2rem; +.mx-24 { + margin-left: 6rem; + margin-right: 6rem; } -.-mr-9 { - margin-right: -2.25rem; +.mx-28 { + margin-left: 7rem; + margin-right: 7rem; } -.-mr-10 { - margin-right: -2.5rem; +.mx-auto { + margin-left: auto; + margin-right: auto; } -.-mr-11 { - margin-right: -2.75rem; +.mx-px { + margin-left: 1px; + margin-right: 1px; } -.-mr-12 { - margin-right: -3rem; +.-mx-0 { + margin-left: 0px; + margin-right: 0px; } -.-mr-14 { - margin-right: -3.5rem; +.-mx-1 { + margin-left: -0.25rem; + margin-right: -0.25rem; } -.-mr-16 { - margin-right: -4rem; +.-mx-2 { + margin-left: -0.5rem; + margin-right: -0.5rem; } -.-mr-20 { - margin-right: -5rem; +.-mx-3 { + margin-left: -0.75rem; + margin-right: -0.75rem; } -.-mr-24 { - margin-right: -6rem; +.-mx-4 { + margin-left: -1rem; + margin-right: -1rem; } -.-mr-28 { - margin-right: -7rem; +.-mx-5 { + margin-left: -1.25rem; + margin-right: -1.25rem; } -.-mr-32 { - margin-right: -8rem; +.-mx-6 { + margin-left: -1.5rem; + margin-right: -1.5rem; } -.-mr-36 { - margin-right: -9rem; +.-mx-7 { + margin-left: -1.75rem; + margin-right: -1.75rem; } -.-mr-40 { - margin-right: -10rem; +.-mx-8 { + margin-left: -2rem; + margin-right: -2rem; } -.-mr-44 { - margin-right: -11rem; +.-mx-9 { + margin-left: -2.25rem; + margin-right: -2.25rem; } -.-mr-48 { - margin-right: -12rem; +.-mx-10 { + margin-left: -2.5rem; + margin-right: -2.5rem; } -.-mr-52 { - margin-right: -13rem; +.-mx-11 { + margin-left: -2.75rem; + margin-right: -2.75rem; } -.-mr-56 { - margin-right: -14rem; +.-mx-12 { + margin-left: -3rem; + margin-right: -3rem; } -.-mr-60 { - margin-right: -15rem; +.-mx-14 { + margin-left: -3.5rem; + margin-right: -3.5rem; } -.-mr-64 { - margin-right: -16rem; +.-mx-16 { + margin-left: -4rem; + margin-right: -4rem; } -.-mr-72 { - margin-right: -18rem; +.-mx-20 { + margin-left: -5rem; + margin-right: -5rem; } -.-mr-80 { - margin-right: -20rem; +.-mx-24 { + margin-left: -6rem; + margin-right: -6rem; } -.-mr-96 { - margin-right: -24rem; +.-mx-28 { + margin-left: -7rem; + margin-right: -7rem; } -.-mr-px { +.-mx-px { + margin-left: -1px; margin-right: -1px; } -.mb-0 { +.my-0 { + margin-top: 0px; margin-bottom: 0px; } -.mb-1 { +.my-1 { + margin-top: 0.25rem; margin-bottom: 0.25rem; } -.mb-2 { +.my-2 { + margin-top: 0.5rem; margin-bottom: 0.5rem; } -.mb-3 { +.my-3 { + margin-top: 0.75rem; margin-bottom: 0.75rem; } -.mb-4 { +.my-4 { + margin-top: 1rem; margin-bottom: 1rem; } -.mb-5 { +.my-5 { + margin-top: 1.25rem; margin-bottom: 1.25rem; } -.mb-6 { +.my-6 { + margin-top: 1.5rem; margin-bottom: 1.5rem; } -.mb-7 { +.my-7 { + margin-top: 1.75rem; margin-bottom: 1.75rem; } -.mb-8 { +.my-8 { + margin-top: 2rem; margin-bottom: 2rem; } -.mb-9 { +.my-9 { + margin-top: 2.25rem; margin-bottom: 2.25rem; } -.mb-10 { +.my-10 { + margin-top: 2.5rem; margin-bottom: 2.5rem; } -.mb-11 { +.my-11 { + margin-top: 2.75rem; margin-bottom: 2.75rem; } -.mb-12 { +.my-12 { + margin-top: 3rem; margin-bottom: 3rem; } -.mb-14 { +.my-14 { + margin-top: 3.5rem; margin-bottom: 3.5rem; } -.mb-16 { +.my-16 { + margin-top: 4rem; margin-bottom: 4rem; } -.mb-20 { +.my-20 { + margin-top: 5rem; margin-bottom: 5rem; } -.mb-24 { +.my-24 { + margin-top: 6rem; margin-bottom: 6rem; } -.mb-28 { +.my-28 { + margin-top: 7rem; margin-bottom: 7rem; } -.mb-32 { - margin-bottom: 8rem; -} - -.mb-36 { - margin-bottom: 9rem; -} - -.mb-40 { - margin-bottom: 10rem; -} - -.mb-44 { - margin-bottom: 11rem; -} - -.mb-48 { - margin-bottom: 12rem; -} - -.mb-52 { - margin-bottom: 13rem; -} - -.mb-56 { - margin-bottom: 14rem; -} - -.mb-60 { - margin-bottom: 15rem; -} - -.mb-64 { - margin-bottom: 16rem; -} - -.mb-72 { - margin-bottom: 18rem; -} - -.mb-80 { - margin-bottom: 20rem; -} - -.mb-96 { - margin-bottom: 24rem; -} - -.mb-auto { +.my-auto { + margin-top: auto; margin-bottom: auto; } -.mb-px { +.my-px { + margin-top: 1px; margin-bottom: 1px; } -.-mb-0 { +.-my-0 { + margin-top: 0px; margin-bottom: 0px; } -.-mb-1 { +.-my-1 { + margin-top: -0.25rem; margin-bottom: -0.25rem; } -.-mb-2 { +.-my-2 { + margin-top: -0.5rem; margin-bottom: -0.5rem; } -.-mb-3 { +.-my-3 { + margin-top: -0.75rem; margin-bottom: -0.75rem; } -.-mb-4 { +.-my-4 { + margin-top: -1rem; margin-bottom: -1rem; } -.-mb-5 { +.-my-5 { + margin-top: -1.25rem; margin-bottom: -1.25rem; } -.-mb-6 { +.-my-6 { + margin-top: -1.5rem; margin-bottom: -1.5rem; } -.-mb-7 { +.-my-7 { + margin-top: -1.75rem; margin-bottom: -1.75rem; } -.-mb-8 { +.-my-8 { + margin-top: -2rem; margin-bottom: -2rem; } -.-mb-9 { +.-my-9 { + margin-top: -2.25rem; margin-bottom: -2.25rem; } -.-mb-10 { +.-my-10 { + margin-top: -2.5rem; margin-bottom: -2.5rem; } -.-mb-11 { +.-my-11 { + margin-top: -2.75rem; margin-bottom: -2.75rem; } -.-mb-12 { +.-my-12 { + margin-top: -3rem; margin-bottom: -3rem; } -.-mb-14 { +.-my-14 { + margin-top: -3.5rem; margin-bottom: -3.5rem; } -.-mb-16 { +.-my-16 { + margin-top: -4rem; margin-bottom: -4rem; } -.-mb-20 { +.-my-20 { + margin-top: -5rem; margin-bottom: -5rem; } -.-mb-24 { +.-my-24 { + margin-top: -6rem; margin-bottom: -6rem; } -.-mb-28 { +.-my-28 { + margin-top: -7rem; margin-bottom: -7rem; } -.-mb-32 { - margin-bottom: -8rem; +.-my-px { + margin-top: -1px; + margin-bottom: -1px; } -.-mb-36 { - margin-bottom: -9rem; +.mt-0 { + margin-top: 0px; } -.-mb-40 { - margin-bottom: -10rem; +.mt-1 { + margin-top: 0.25rem; } -.-mb-44 { - margin-bottom: -11rem; +.mt-2 { + margin-top: 0.5rem; } -.-mb-48 { - margin-bottom: -12rem; +.mt-3 { + margin-top: 0.75rem; } -.-mb-52 { - margin-bottom: -13rem; +.mt-4 { + margin-top: 1rem; } -.-mb-56 { - margin-bottom: -14rem; +.mt-5 { + margin-top: 1.25rem; } -.-mb-60 { - margin-bottom: -15rem; +.mt-6 { + margin-top: 1.5rem; } -.-mb-64 { - margin-bottom: -16rem; +.mt-7 { + margin-top: 1.75rem; } -.-mb-72 { - margin-bottom: -18rem; +.mt-8 { + margin-top: 2rem; } -.-mb-80 { - margin-bottom: -20rem; +.mt-9 { + margin-top: 2.25rem; } -.-mb-96 { - margin-bottom: -24rem; +.mt-10 { + margin-top: 2.5rem; } -.-mb-px { - margin-bottom: -1px; +.mt-11 { + margin-top: 2.75rem; } -.ml-0 { - margin-left: 0px; +.mt-12 { + margin-top: 3rem; } -.ml-1 { - margin-left: 0.25rem; +.mt-14 { + margin-top: 3.5rem; } -.ml-2 { - margin-left: 0.5rem; +.mt-16 { + margin-top: 4rem; } -.ml-3 { - margin-left: 0.75rem; +.mt-20 { + margin-top: 5rem; } -.ml-4 { - margin-left: 1rem; +.mt-24 { + margin-top: 6rem; } -.ml-5 { - margin-left: 1.25rem; +.mt-28 { + margin-top: 7rem; } -.ml-6 { - margin-left: 1.5rem; +.mt-auto { + margin-top: auto; } -.ml-7 { - margin-left: 1.75rem; +.mt-px { + margin-top: 1px; } -.ml-8 { - margin-left: 2rem; +.-mt-0 { + margin-top: 0px; } -.ml-9 { - margin-left: 2.25rem; +.-mt-1 { + margin-top: -0.25rem; } -.ml-10 { - margin-left: 2.5rem; +.-mt-2 { + margin-top: -0.5rem; } -.ml-11 { - margin-left: 2.75rem; +.-mt-3 { + margin-top: -0.75rem; } -.ml-12 { - margin-left: 3rem; +.-mt-4 { + margin-top: -1rem; } -.ml-14 { - margin-left: 3.5rem; +.-mt-5 { + margin-top: -1.25rem; } -.ml-16 { - margin-left: 4rem; +.-mt-6 { + margin-top: -1.5rem; } -.ml-20 { - margin-left: 5rem; +.-mt-7 { + margin-top: -1.75rem; } -.ml-24 { - margin-left: 6rem; +.-mt-8 { + margin-top: -2rem; } -.ml-28 { - margin-left: 7rem; +.-mt-9 { + margin-top: -2.25rem; } -.ml-32 { - margin-left: 8rem; +.-mt-10 { + margin-top: -2.5rem; } -.ml-36 { - margin-left: 9rem; +.-mt-11 { + margin-top: -2.75rem; } -.ml-40 { - margin-left: 10rem; +.-mt-12 { + margin-top: -3rem; } -.ml-44 { - margin-left: 11rem; +.-mt-14 { + margin-top: -3.5rem; } -.ml-48 { - margin-left: 12rem; +.-mt-16 { + margin-top: -4rem; } -.ml-52 { - margin-left: 13rem; +.-mt-20 { + margin-top: -5rem; } -.ml-56 { - margin-left: 14rem; +.-mt-24 { + margin-top: -6rem; } -.ml-60 { - margin-left: 15rem; +.-mt-28 { + margin-top: -7rem; } -.ml-64 { - margin-left: 16rem; +.-mt-px { + margin-top: -1px; } -.ml-72 { - margin-left: 18rem; +.mr-0 { + margin-right: 0px; } -.ml-80 { - margin-left: 20rem; +.mr-1 { + margin-right: 0.25rem; } -.ml-96 { - margin-left: 24rem; +.mr-2 { + margin-right: 0.5rem; } -.ml-auto { - margin-left: auto; +.mr-3 { + margin-right: 0.75rem; } -.ml-px { - margin-left: 1px; +.mr-4 { + margin-right: 1rem; } -.-ml-0 { - margin-left: 0px; +.mr-5 { + margin-right: 1.25rem; } -.-ml-1 { - margin-left: -0.25rem; +.mr-6 { + margin-right: 1.5rem; } -.-ml-2 { - margin-left: -0.5rem; +.mr-7 { + margin-right: 1.75rem; } -.-ml-3 { - margin-left: -0.75rem; +.mr-8 { + margin-right: 2rem; } -.-ml-4 { - margin-left: -1rem; +.mr-9 { + margin-right: 2.25rem; } -.-ml-5 { - margin-left: -1.25rem; +.mr-10 { + margin-right: 2.5rem; } -.-ml-6 { - margin-left: -1.5rem; +.mr-11 { + margin-right: 2.75rem; } -.-ml-7 { - margin-left: -1.75rem; +.mr-12 { + margin-right: 3rem; } -.-ml-8 { - margin-left: -2rem; +.mr-14 { + margin-right: 3.5rem; } -.-ml-9 { - margin-left: -2.25rem; +.mr-16 { + margin-right: 4rem; } -.-ml-10 { - margin-left: -2.5rem; +.mr-20 { + margin-right: 5rem; } -.-ml-11 { - margin-left: -2.75rem; -} - -.-ml-12 { - margin-left: -3rem; +.mr-24 { + margin-right: 6rem; } -.-ml-14 { - margin-left: -3.5rem; +.mr-28 { + margin-right: 7rem; } -.-ml-16 { - margin-left: -4rem; +.mr-auto { + margin-right: auto; } -.-ml-20 { - margin-left: -5rem; +.mr-px { + margin-right: 1px; } -.-ml-24 { - margin-left: -6rem; +.-mr-0 { + margin-right: 0px; } -.-ml-28 { - margin-left: -7rem; +.-mr-1 { + margin-right: -0.25rem; } -.-ml-32 { - margin-left: -8rem; +.-mr-2 { + margin-right: -0.5rem; } -.-ml-36 { - margin-left: -9rem; +.-mr-3 { + margin-right: -0.75rem; } -.-ml-40 { - margin-left: -10rem; +.-mr-4 { + margin-right: -1rem; } -.-ml-44 { - margin-left: -11rem; +.-mr-5 { + margin-right: -1.25rem; } -.-ml-48 { - margin-left: -12rem; +.-mr-6 { + margin-right: -1.5rem; } -.-ml-52 { - margin-left: -13rem; +.-mr-7 { + margin-right: -1.75rem; } -.-ml-56 { - margin-left: -14rem; +.-mr-8 { + margin-right: -2rem; } -.-ml-60 { - margin-left: -15rem; +.-mr-9 { + margin-right: -2.25rem; } -.-ml-64 { - margin-left: -16rem; +.-mr-10 { + margin-right: -2.5rem; } -.-ml-72 { - margin-left: -18rem; +.-mr-11 { + margin-right: -2.75rem; } -.-ml-80 { - margin-left: -20rem; +.-mr-12 { + margin-right: -3rem; } -.-ml-96 { - margin-left: -24rem; +.-mr-14 { + margin-right: -3.5rem; } -.-ml-px { - margin-left: -1px; +.-mr-16 { + margin-right: -4rem; } -.border-t { - border-top: 1px solid #f8f8f8; +.-mr-20 { + margin-right: -5rem; } -.border-b { - border-bottom: 1px solid #f8f8f8; +.-mr-24 { + margin-right: -6rem; } -.box-border { - box-sizing: border-box; +.-mr-28 { + margin-right: -7rem; } -.box-content { - box-sizing: content-box; +.-mr-px { + margin-right: -1px; } -.block { - display: block; +.mb-0 { + margin-bottom: 0px; } -.inline-block { - display: inline-block; +.mb-1 { + margin-bottom: 0.25rem; } -.inline { - display: inline; +.mb-2 { + margin-bottom: 0.5rem; } -.flex { - display: flex; +.mb-3 { + margin-bottom: 0.75rem; } -.inline-flex { - display: inline-flex; +.mb-4 { + margin-bottom: 1rem; } -.grid { - display: grid; +.mb-5 { + margin-bottom: 1.25rem; } -.inline-grid { - display: inline-grid; +.mb-6 { + margin-bottom: 1.5rem; } -.contents { - display: contents; +.mb-7 { + margin-bottom: 1.75rem; } -.list-item { - display: list-item; +.mb-8 { + margin-bottom: 2rem; } -.hidden { - display: none; +.mb-9 { + margin-bottom: 2.25rem; } -.flex-1 { - flex: 1 1 0%; +.mb-10 { + margin-bottom: 2.5rem; } -.flex-auto { - flex: 1 1 auto; +.mb-11 { + margin-bottom: 2.75rem; } -.flex-initial { - flex: 0 1 auto; +.mb-12 { + margin-bottom: 3rem; } -.flex-none { - flex: none; +.mb-14 { + margin-bottom: 3.5rem; } -.flex-shrink-0 { - flex-shrink: 0; +.mb-16 { + margin-bottom: 4rem; } -.flex-shrink { - flex-shrink: 1; +.mb-20 { + margin-bottom: 5rem; } -.flex-grow-0 { - flex-grow: 0; +.mb-24 { + margin-bottom: 6rem; } -.flex-grow { - flex-grow: 1; +.mb-28 { + margin-bottom: 7rem; } -@keyframes spin { - to { - transform: rotate(360deg); - } +.mb-auto { + margin-bottom: auto; } -@keyframes ping { - 75%, - 100% { - transform: scale(2); - opacity: 0; - } +.mb-px { + margin-bottom: 1px; } -@keyframes pulse { - 50% { - opacity: 0.5; - } +.-mb-0 { + margin-bottom: 0px; } -@keyframes bounce { - 0%, - 100% { - transform: translateY(-25%); - animation-timing-function: cubic-bezier(0.8, 0, 1, 1); - } - - 50% { - transform: none; - animation-timing-function: cubic-bezier(0, 0, 0.2, 1); - } +.-mb-1 { + margin-bottom: -0.25rem; } -.animate-none { - animation: none; +.-mb-2 { + margin-bottom: -0.5rem; } -.animate-spin { - animation: spin 1s linear infinite; +.-mb-3 { + margin-bottom: -0.75rem; } -.animate-ping { - animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite; +.-mb-4 { + margin-bottom: -1rem; } -.animate-pulse { - animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite; +.-mb-5 { + margin-bottom: -1.25rem; } -.animate-bounce { - animation: bounce 1s infinite; +.-mb-6 { + margin-bottom: -1.5rem; } -.cursor-auto { - cursor: auto; +.-mb-7 { + margin-bottom: -1.75rem; } -.cursor-default { - cursor: default; +.-mb-8 { + margin-bottom: -2rem; } -.cursor-pointer { - cursor: pointer; +.-mb-9 { + margin-bottom: -2.25rem; } -.cursor-wait { - cursor: wait; +.-mb-10 { + margin-bottom: -2.5rem; } -.cursor-text { - cursor: text; +.-mb-11 { + margin-bottom: -2.75rem; } -.cursor-move { - cursor: move; +.-mb-12 { + margin-bottom: -3rem; } -.cursor-help { - cursor: help; +.-mb-14 { + margin-bottom: -3.5rem; } -.cursor-not-allowed { - cursor: not-allowed; +.-mb-16 { + margin-bottom: -4rem; } -.select-none { - -webkit-user-select: none; - user-select: none; +.-mb-20 { + margin-bottom: -5rem; } -.select-text { - -webkit-user-select: text; - user-select: text; +.-mb-px { + margin-bottom: -1px; } -.select-all { - -webkit-user-select: all; - user-select: all; +.ml-0 { + margin-left: 0px; } -.select-auto { - -webkit-user-select: auto; - user-select: auto; +.ml-1 { + margin-left: 0.25rem; } -.auto-cols-auto { - grid-auto-columns: auto; +.ml-2 { + margin-left: 0.5rem; } -.auto-cols-min { - grid-auto-columns: min-content; +.ml-3 { + margin-left: 0.75rem; } -.auto-cols-max { - grid-auto-columns: max-content; +.ml-4 { + margin-left: 1rem; } -.auto-cols-fr { - grid-auto-columns: minmax(0, 1fr); +.ml-5 { + margin-left: 1.25rem; } -.grid-flow-row { - grid-auto-flow: row; +.ml-6 { + margin-left: 1.5rem; } -.grid-flow-col { - grid-auto-flow: column; +.ml-7 { + margin-left: 1.75rem; } -.grid-flow-row-dense { - grid-auto-flow: row dense; +.ml-8 { + margin-left: 2rem; } -.grid-flow-col-dense { - grid-auto-flow: column dense; +.ml-9 { + margin-left: 2.25rem; } -.auto-rows-auto { - grid-auto-rows: auto; +.ml-10 { + margin-left: 2.5rem; } -.auto-rows-min { - grid-auto-rows: min-content; +.ml-11 { + margin-left: 2.75rem; } -.auto-rows-max { - grid-auto-rows: max-content; +.ml-12 { + margin-left: 3rem; } -.auto-rows-fr { - grid-auto-rows: minmax(0, 1fr); +.ml-14 { + margin-left: 3.5rem; } -.grid-cols-1 { - grid-template-columns: repeat(1, minmax(0, 1fr)); +.ml-16 { + margin-left: 4rem; } -.grid-cols-2 { - grid-template-columns: repeat(2, minmax(0, 1fr)); +.ml-auto { + margin-left: auto; } -.grid-cols-3 { - grid-template-columns: repeat(3, minmax(0, 1fr)); +.ml-px { + margin-left: 1px; } -.grid-cols-4 { - grid-template-columns: repeat(4, minmax(0, 1fr)); +.-ml-0 { + margin-left: 0px; } -.grid-cols-5 { - grid-template-columns: repeat(5, minmax(0, 1fr)); +.-ml-1 { + margin-left: -0.25rem; } -.grid-cols-6 { - grid-template-columns: repeat(6, minmax(0, 1fr)); +.-ml-2 { + margin-left: -0.5rem; } -.grid-cols-7 { - grid-template-columns: repeat(7, minmax(0, 1fr)); +.-ml-3 { + margin-left: -0.75rem; } -.grid-cols-8 { - grid-template-columns: repeat(8, minmax(0, 1fr)); +.-ml-4 { + margin-left: -1rem; } -.grid-cols-9 { - grid-template-columns: repeat(9, minmax(0, 1fr)); +.-ml-5 { + margin-left: -1.25rem; } -.grid-cols-10 { - grid-template-columns: repeat(10, minmax(0, 1fr)); +.-ml-6 { + margin-left: -1.5rem; } -.grid-cols-11 { - grid-template-columns: repeat(11, minmax(0, 1fr)); +.-ml-7 { + margin-left: -1.75rem; } -.grid-cols-12 { - grid-template-columns: repeat(12, minmax(0, 1fr)); +.-ml-8 { + margin-left: -2rem; } -.grid-cols-none { - grid-template-columns: none; +.-ml-9 { + margin-left: -2.25rem; } -.grid-rows-1 { - grid-template-rows: repeat(1, minmax(0, 1fr)); +.-ml-10 { + margin-left: -2.5rem; } - -.grid-rows-2 { - grid-template-rows: repeat(2, minmax(0, 1fr)); +.-ml-px { + margin-left: -1px; } -.grid-rows-3 { - grid-template-rows: repeat(3, minmax(0, 1fr)); +.p-0 { + padding: 0px; } -.grid-rows-4 { - grid-template-rows: repeat(4, minmax(0, 1fr)); +.p-1 { + padding: 0.25rem; } -.grid-rows-5 { - grid-template-rows: repeat(5, minmax(0, 1fr)); +.p-2 { + padding: 0.5rem; } -.grid-rows-6 { - grid-template-rows: repeat(6, minmax(0, 1fr)); +.p-3 { + padding: 0.75rem; } -.grid-rows-none { - grid-template-rows: none; +.p-4 { + padding: 1rem; } -.flex-row { - flex-direction: row; +.p-5 { + padding: 1.25rem; } -.flex-row-reverse { - flex-direction: row-reverse; +.p-6 { + padding: 1.5rem; } -.flex-col { - flex-direction: column; +.p-7 { + padding: 1.75rem; } -.flex-col-reverse { - flex-direction: column-reverse; +.p-8 { + padding: 2rem; } -.flex-wrap { - flex-wrap: wrap; +.p-9 { + padding: 2.25rem; } -.flex-wrap-reverse { - flex-wrap: wrap-reverse; +.p-10 { + padding: 2.5rem; } -.flex-nowrap { - flex-wrap: nowrap; +.p-11 { + padding: 2.75rem; } -.content-center { - align-content: center; +.p-12 { + padding: 3rem; } -.content-start { - align-content: flex-start; +.p-14 { + padding: 3.5rem; } -.content-end { - align-content: flex-end; +.p-16 { + padding: 4rem; } -.content-between { - align-content: space-between; +.p-20 { + padding: 5rem; } -.content-around { - align-content: space-around; +.p-24 { + padding: 6rem; } -.content-evenly { - align-content: space-evenly; +.p-28 { + padding: 7rem; } -.items-start { - align-items: flex-start; +.p-px { + padding: 1px; } -.items-end { - align-items: flex-end; +.px-0 { + padding-left: 0px; + padding-right: 0px; } -.items-center { - align-items: center; +.px-1 { + padding-left: 0.25rem; + padding-right: 0.25rem; } -.items-baseline { - align-items: baseline; +.px-2 { + padding-left: 0.5rem; + padding-right: 0.5rem; } -.items-stretch { - align-items: stretch; +.px-3 { + padding-left: 0.75rem; + padding-right: 0.75rem; } -.justify-start { - justify-content: flex-start; +.px-4 { + padding-left: 1rem; + padding-right: 1rem; } -.justify-end { - justify-content: flex-end; +.px-5 { + padding-left: 1.25rem; + padding-right: 1.25rem; } -.justify-center { - justify-content: center; +.px-6 { + padding-left: 1.5rem; + padding-right: 1.5rem; } -.justify-between { - justify-content: space-between; +.px-7 { + padding-left: 1.75rem; + padding-right: 1.75rem; } -.justify-around { - justify-content: space-around; +.px-8 { + padding-left: 2rem; + padding-right: 2rem; } -.justify-evenly { - justify-content: space-evenly; +.px-9 { + padding-left: 2.25rem; + padding-right: 2.25rem; } -.justify-items-start { - justify-items: start; +.px-10 { + padding-left: 2.5rem; + padding-right: 2.5rem; } -.justify-items-end { - justify-items: end; +.px-11 { + padding-left: 2.75rem; + padding-right: 2.75rem; } -.justify-items-center { - justify-items: center; +.px-12 { + padding-left: 3rem; + padding-right: 3rem; } -.justify-items-stretch { - justify-items: stretch; +.px-14 { + padding-left: 3.5rem; + padding-right: 3.5rem; } -.self-auto { - align-self: auto; +.px-16 { + padding-left: 4rem; + padding-right: 4rem; } -.self-start { - align-self: flex-start; +.px-20 { + padding-left: 5rem; + padding-right: 5rem; } -.self-end { - align-self: flex-end; +.px-24 { + padding-left: 6rem; + padding-right: 6rem; } -.self-center { - align-self: center; -} - -.self-stretch { - align-self: stretch; -} - -.self-baseline { - align-self: baseline; -} - -.justify-self-auto { - justify-self: auto; -} - -.justify-self-start { - justify-self: start; -} - -.justify-self-end { - justify-self: end; -} - -.justify-self-center { - justify-self: center; -} - -.justify-self-stretch { - justify-self: stretch; -} - -.overflow-auto { - overflow: auto; -} - -.overflow-hidden { - overflow: hidden; -} - -.overflow-visible { - overflow: visible; -} - -.overflow-scroll { - overflow: scroll; -} - -.overflow-x-auto { - overflow-x: auto; +.px-28 { + padding-left: 7rem; + padding-right: 7rem; } -.overflow-y-auto { - overflow-y: auto; +.px-px { + padding-left: 1px; + padding-right: 1px; } -.overflow-x-hidden { - overflow-x: hidden; +.py-0 { + padding-top: 0px; + padding-bottom: 0px; } -.overflow-y-hidden { - overflow-y: hidden; +.py-1 { + padding-top: 0.25rem; + padding-bottom: 0.25rem; } -.overflow-x-visible { - overflow-x: visible; +.py-2 { + padding-top: 0.5rem; + padding-bottom: 0.5rem; } -.overflow-y-visible { - overflow-y: visible; +.py-3 { + padding-top: 0.75rem; + padding-bottom: 0.75rem; } -.overflow-x-scroll { - overflow-x: scroll; +.py-4 { + padding-top: 1rem; + padding-bottom: 1rem; } -.overflow-y-scroll { - overflow-y: scroll; -} -.truncate { - overflow: hidden; - text-overflow: ellipsis; - white-space: nowrap; +.py-5 { + padding-top: 1.25rem; + padding-bottom: 1.25rem; } -.overflow-ellipsis { - text-overflow: ellipsis; +.py-6 { + padding-top: 1.5rem; + padding-bottom: 1.5rem; } -.p-0 { - padding: 0px; +.py-7 { + padding-top: 1.75rem; + padding-bottom: 1.75rem; } -.p-1 { - padding: 0.25rem; +.py-8 { + padding-top: 2rem; + padding-bottom: 2rem; } -.p-2 { - padding: 0.5rem; +.py-9 { + padding-top: 2.25rem; + padding-bottom: 2.25rem; } -.p-3 { - padding: 0.75rem; +.py-10 { + padding-top: 2.5rem; + padding-bottom: 2.5rem; } -.p-4 { - padding: 1rem; +.py-11 { + padding-top: 2.75rem; + padding-bottom: 2.75rem; } -.p-5 { - padding: 1.25rem; +.py-12 { + padding-top: 3rem; + padding-bottom: 3rem; } -.p-6 { - padding: 1.5rem; +.py-14 { + padding-top: 3.5rem; + padding-bottom: 3.5rem; } -.p-7 { - padding: 1.75rem; +.py-16 { + padding-top: 4rem; + padding-bottom: 4rem; } -.p-8 { - padding: 2rem; +.py-20 { + padding-top: 5rem; + padding-bottom: 5rem; } -.p-9 { - padding: 2.25rem; +.py-24 { + padding-top: 6rem; + padding-bottom: 6rem; } -.p-10 { - padding: 2.5rem; +.py-28 { + padding-top: 7rem; + padding-bottom: 7rem; } -.p-11 { - padding: 2.75rem; +.py-px { + padding-top: 1px; + padding-bottom: 1px; } -.p-12 { - padding: 3rem; +.pt-0 { + padding-top: 0px; } -.p-14 { - padding: 3.5rem; +.pt-1 { + padding-top: 0.25rem; } -.p-16 { - padding: 4rem; +.pt-2 { + padding-top: 0.5rem; } -.p-20 { - padding: 5rem; +.pt-3 { + padding-top: 0.75rem; } -.p-24 { - padding: 6rem; +.pt-4 { + padding-top: 1rem; } -.p-28 { - padding: 7rem; +.pt-5 { + padding-top: 1.25rem; } -.p-32 { - padding: 8rem; +.pt-6 { + padding-top: 1.5rem; } -.p-36 { - padding: 9rem; +.pt-7 { + padding-top: 1.75rem; } -.p-40 { - padding: 10rem; +.pt-8 { + padding-top: 2rem; } -.p-44 { - padding: 11rem; +.pt-9 { + padding-top: 2.25rem; } -.p-48 { - padding: 12rem; +.pt-10 { + padding-top: 2.5rem; } -.p-52 { - padding: 13rem; +.pt-11 { + padding-top: 2.75rem; } -.p-56 { - padding: 14rem; +.pt-12 { + padding-top: 3rem; } -.p-60 { - padding: 15rem; +.pt-14 { + padding-top: 3.5rem; } -.p-64 { - padding: 16rem; +.pt-16 { + padding-top: 4rem; } -.p-72 { - padding: 18rem; +.pt-20 { + padding-top: 5rem; } -.p-80 { - padding: 20rem; +.pt-24 { + padding-top: 6rem; } -.p-96 { - padding: 24rem; +.pt-28 { + padding-top: 7rem; } -.p-px { - padding: 1px; +.pt-px { + padding-top: 1px; } -.px-0 { - padding-left: 0px; +.pr-0 { padding-right: 0px; } -.px-1 { - padding-left: 0.25rem; +.pr-1 { padding-right: 0.25rem; } -.px-2 { - padding-left: 0.5rem; +.pr-2 { padding-right: 0.5rem; } -.px-3 { - padding-left: 0.75rem; +.pr-3 { padding-right: 0.75rem; } -.px-4 { - padding-left: 1rem; +.pr-4 { padding-right: 1rem; } -.px-5 { - padding-left: 1.25rem; +.pr-5 { padding-right: 1.25rem; } -.px-6 { - padding-left: 1.5rem; +.pr-6 { padding-right: 1.5rem; } -.px-7 { - padding-left: 1.75rem; +.pr-7 { padding-right: 1.75rem; } -.px-8 { - padding-left: 2rem; +.pr-8 { padding-right: 2rem; } -.px-9 { - padding-left: 2.25rem; +.pr-9 { padding-right: 2.25rem; } -.px-10 { - padding-left: 2.5rem; +.pr-10 { padding-right: 2.5rem; } -.px-11 { - padding-left: 2.75rem; +.pr-11 { padding-right: 2.75rem; } -.px-12 { - padding-left: 3rem; +.pr-12 { padding-right: 3rem; } -.px-14 { - padding-left: 3.5rem; +.pr-14 { padding-right: 3.5rem; } -.px-16 { - padding-left: 4rem; +.pr-16 { padding-right: 4rem; } -.px-20 { - padding-left: 5rem; +.pr-20 { padding-right: 5rem; } -.px-24 { - padding-left: 6rem; +.pr-24 { padding-right: 6rem; } -.px-28 { - padding-left: 7rem; +.pr-28 { padding-right: 7rem; } -.px-32 { - padding-left: 8rem; - padding-right: 8rem; -} - -.px-36 { - padding-left: 9rem; - padding-right: 9rem; -} - -.px-40 { - padding-left: 10rem; - padding-right: 10rem; -} - -.px-44 { - padding-left: 11rem; - padding-right: 11rem; -} - -.px-48 { - padding-left: 12rem; - padding-right: 12rem; -} - -.px-52 { - padding-left: 13rem; - padding-right: 13rem; -} - -.px-56 { - padding-left: 14rem; - padding-right: 14rem; -} - -.px-60 { - padding-left: 15rem; - padding-right: 15rem; -} - -.px-64 { - padding-left: 16rem; - padding-right: 16rem; -} - -.px-72 { - padding-left: 18rem; - padding-right: 18rem; -} - -.px-80 { - padding-left: 20rem; - padding-right: 20rem; -} - -.px-96 { - padding-left: 24rem; - padding-right: 24rem; -} - -.px-px { - padding-left: 1px; +.pr-px { padding-right: 1px; } -.py-0 { - padding-top: 0px; +.pb-0 { padding-bottom: 0px; } -.py-1 { - padding-top: 0.25rem; +.pb-1 { padding-bottom: 0.25rem; } -.py-2 { - padding-top: 0.5rem; +.pb-2 { padding-bottom: 0.5rem; } -.py-3 { - padding-top: 0.75rem; +.pb-3 { padding-bottom: 0.75rem; } -.py-4 { - padding-top: 1rem; +.pb-4 { padding-bottom: 1rem; } -.py-5 { - padding-top: 1.25rem; +.pb-5 { padding-bottom: 1.25rem; } -.py-6 { - padding-top: 1.5rem; +.pb-6 { padding-bottom: 1.5rem; } -.py-7 { - padding-top: 1.75rem; +.pb-7 { padding-bottom: 1.75rem; } -.py-8 { - padding-top: 2rem; +.pb-8 { padding-bottom: 2rem; } -.py-9 { - padding-top: 2.25rem; +.pb-9 { padding-bottom: 2.25rem; } -.py-10 { - padding-top: 2.5rem; +.pb-10 { padding-bottom: 2.5rem; } -.py-11 { - padding-top: 2.75rem; +.pb-11 { padding-bottom: 2.75rem; } -.py-12 { - padding-top: 3rem; +.pb-12 { padding-bottom: 3rem; } -.py-14 { - padding-top: 3.5rem; +.pb-14 { padding-bottom: 3.5rem; } -.py-16 { - padding-top: 4rem; +.pb-16 { padding-bottom: 4rem; } -.py-20 { - padding-top: 5rem; +.pb-20 { padding-bottom: 5rem; } -.py-24 { - padding-top: 6rem; +.pb-24 { padding-bottom: 6rem; } -.py-28 { - padding-top: 7rem; +.pb-28 { padding-bottom: 7rem; } -.py-32 { - padding-top: 8rem; - padding-bottom: 8rem; -} - -.py-36 { - padding-top: 9rem; - padding-bottom: 9rem; -} - -.py-40 { - padding-top: 10rem; - padding-bottom: 10rem; -} - -.py-44 { - padding-top: 11rem; - padding-bottom: 11rem; -} - -.py-48 { - padding-top: 12rem; - padding-bottom: 12rem; -} - -.py-52 { - padding-top: 13rem; - padding-bottom: 13rem; -} - -.py-56 { - padding-top: 14rem; - padding-bottom: 14rem; -} - -.py-60 { - padding-top: 15rem; - padding-bottom: 15rem; -} - -.py-64 { - padding-top: 16rem; - padding-bottom: 16rem; -} - -.py-72 { - padding-top: 18rem; - padding-bottom: 18rem; -} - -.py-80 { - padding-top: 20rem; - padding-bottom: 20rem; -} - -.py-96 { - padding-top: 24rem; - padding-bottom: 24rem; -} - -.py-px { - padding-top: 1px; +.pb-px { padding-bottom: 1px; } -.pt-0 { - padding-top: 0px; -} - -.pt-1 { - padding-top: 0.25rem; -} - -.pt-2 { - padding-top: 0.5rem; -} - -.pt-3 { - padding-top: 0.75rem; -} - -.pt-4 { - padding-top: 1rem; -} - -.pt-5 { - padding-top: 1.25rem; -} - -.pt-6 { - padding-top: 1.5rem; -} - -.pt-7 { - padding-top: 1.75rem; -} - -.pt-8 { - padding-top: 2rem; -} - -.pt-9 { - padding-top: 2.25rem; -} - -.pt-10 { - padding-top: 2.5rem; -} - -.pt-11 { - padding-top: 2.75rem; -} - -.pt-12 { - padding-top: 3rem; -} - -.pt-14 { - padding-top: 3.5rem; -} - -.pt-16 { - padding-top: 4rem; -} - -.pt-20 { - padding-top: 5rem; -} - -.pt-24 { - padding-top: 6rem; -} - -.pt-28 { - padding-top: 7rem; -} - -.pt-32 { - padding-top: 8rem; -} - -.pt-36 { - padding-top: 9rem; -} - -.pt-40 { - padding-top: 10rem; -} - -.pt-44 { - padding-top: 11rem; -} - -.pt-48 { - padding-top: 12rem; -} - -.pt-52 { - padding-top: 13rem; +.pl-0 { + padding-left: 0px; } -.pt-56 { - padding-top: 14rem; +.pl-1 { + padding-left: 0.25rem; } -.pt-60 { - padding-top: 15rem; +.pl-2 { + padding-left: 0.5rem; } -.pt-64 { - padding-top: 16rem; +.pl-3 { + padding-left: 0.75rem; } -.pt-72 { - padding-top: 18rem; +.pl-4 { + padding-left: 1rem; } -.pt-80 { - padding-top: 20rem; +.pl-5 { + padding-left: 1.25rem; } -.pt-96 { - padding-top: 24rem; +.pl-6 { + padding-left: 1.5rem; } -.pt-px { - padding-top: 1px; +.pl-7 { + padding-left: 1.75rem; } -.pr-0 { - padding-right: 0px; +.pl-8 { + padding-left: 2rem; } -.pr-1 { - padding-right: 0.25rem; +.pl-9 { + padding-left: 2.25rem; } -.pr-2 { - padding-right: 0.5rem; +.pl-10 { + padding-left: 2.5rem; } -.pr-3 { - padding-right: 0.75rem; +.pl-11 { + padding-left: 2.75rem; } -.pr-4 { - padding-right: 1rem; +.pl-12 { + padding-left: 3rem; } -.pr-5 { - padding-right: 1.25rem; +.pl-14 { + padding-left: 3.5rem; } -.pr-6 { - padding-right: 1.5rem; +.pl-16 { + padding-left: 4rem; } -.pr-7 { - padding-right: 1.75rem; +.pl-20 { + padding-left: 5rem; } -.pr-8 { - padding-right: 2rem; +.pl-24 { + padding-left: 6rem; } -.pr-9 { - padding-right: 2.25rem; -} - -.pr-10 { - padding-right: 2.5rem; -} - -.pr-11 { - padding-right: 2.75rem; -} - -.pr-12 { - padding-right: 3rem; -} - -.pr-14 { - padding-right: 3.5rem; -} - -.pr-16 { - padding-right: 4rem; -} - -.pr-20 { - padding-right: 5rem; -} - -.pr-24 { - padding-right: 6rem; -} - -.pr-28 { - padding-right: 7rem; -} - -.pr-32 { - padding-right: 8rem; -} - -.pr-36 { - padding-right: 9rem; -} - -.pr-40 { - padding-right: 10rem; -} - -.pr-44 { - padding-right: 11rem; -} - -.pr-48 { - padding-right: 12rem; -} - -.pr-52 { - padding-right: 13rem; -} - -.pr-56 { - padding-right: 14rem; -} - -.pr-60 { - padding-right: 15rem; -} - -.pr-64 { - padding-right: 16rem; -} - -.pr-72 { - padding-right: 18rem; -} - -.pr-80 { - padding-right: 20rem; -} - -.pr-96 { - padding-right: 24rem; -} - -.pr-px { - padding-right: 1px; -} - -.pb-0 { - padding-bottom: 0px; -} - -.pb-1 { - padding-bottom: 0.25rem; -} - -.pb-2 { - padding-bottom: 0.5rem; -} - -.pb-3 { - padding-bottom: 0.75rem; -} - -.pb-4 { - padding-bottom: 1rem; -} - -.pb-5 { - padding-bottom: 1.25rem; -} - -.pb-6 { - padding-bottom: 1.5rem; -} - -.pb-7 { - padding-bottom: 1.75rem; -} - -.pb-8 { - padding-bottom: 2rem; -} - -.pb-9 { - padding-bottom: 2.25rem; -} - -.pb-10 { - padding-bottom: 2.5rem; -} - -.pb-11 { - padding-bottom: 2.75rem; -} - -.pb-12 { - padding-bottom: 3rem; -} - -.pb-14 { - padding-bottom: 3.5rem; -} - -.pb-16 { - padding-bottom: 4rem; -} - -.pb-20 { - padding-bottom: 5rem; -} - -.pb-24 { - padding-bottom: 6rem; -} - -.pb-28 { - padding-bottom: 7rem; -} - -.pb-32 { - padding-bottom: 8rem; -} - -.pb-36 { - padding-bottom: 9rem; -} - -.pb-40 { - padding-bottom: 10rem; -} - -.pb-44 { - padding-bottom: 11rem; -} - -.pb-48 { - padding-bottom: 12rem; -} - -.pb-52 { - padding-bottom: 13rem; -} - -.pb-56 { - padding-bottom: 14rem; -} - -.pb-60 { - padding-bottom: 15rem; -} - -.pb-64 { - padding-bottom: 16rem; -} - -.pb-72 { - padding-bottom: 18rem; -} - -.pb-80 { - padding-bottom: 20rem; -} - -.pb-96 { - padding-bottom: 24rem; -} - -.pb-px { - padding-bottom: 1px; -} - -.pl-0 { - padding-left: 0px; -} - -.pl-1 { - padding-left: 0.25rem; -} - -.pl-2 { - padding-left: 0.5rem; -} - -.pl-3 { - padding-left: 0.75rem; -} - -.pl-4 { - padding-left: 1rem; -} - -.pl-5 { - padding-left: 1.25rem; -} - -.pl-6 { - padding-left: 1.5rem; -} - -.pl-7 { - padding-left: 1.75rem; -} - -.pl-8 { - padding-left: 2rem; -} - -.pl-9 { - padding-left: 2.25rem; -} - -.pl-10 { - padding-left: 2.5rem; -} - -.pl-11 { - padding-left: 2.75rem; -} - -.pl-12 { - padding-left: 3rem; -} - -.pl-14 { - padding-left: 3.5rem; -} - -.pl-16 { - padding-left: 4rem; -} - -.pl-20 { - padding-left: 5rem; -} - -.pl-24 { - padding-left: 6rem; -} - -.pl-28 { - padding-left: 7rem; -} - -.pl-32 { - padding-left: 8rem; -} - -.pl-36 { - padding-left: 9rem; -} - -.pl-40 { - padding-left: 10rem; -} - -.pl-44 { - padding-left: 11rem; -} - -.pl-48 { - padding-left: 12rem; -} - -.pl-52 { - padding-left: 13rem; -} - -.pl-56 { - padding-left: 14rem; -} - -.pl-60 { - padding-left: 15rem; -} - -.pl-64 { - padding-left: 16rem; -} - -.pl-72 { - padding-left: 18rem; -} - -.pl-80 { - padding-left: 20rem; -} - -.pl-96 { - padding-left: 24rem; +.pl-28 { + padding-left: 7rem; } .pl-px { padding-left: 1px; } - -.text-left { - text-align: left; -} - -.text-center { - text-align: center; -} - -.text-right { - text-align: right; -} - -.text-justify { - text-align: justify; -} - -.align-baseline { - vertical-align: baseline; -} - -.align-top { - vertical-align: top; -} - -.align-middle { - vertical-align: middle; -} - -.align-bottom { - vertical-align: bottom; -} - -.align-text-top { - vertical-align: text-top; -} - -.align-text-bottom { - vertical-align: text-bottom; -} - -.font-sans { - font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, 'Noto Sans', - sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji'; -} - -.font-serif { - font-family: ui-serif, Georgia, Cambria, 'Times New Roman', Times, serif; -} - -.font-mono { - font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, 'Liberation Mono', 'Courier New', monospace; -} - -.text-xs { - font-size: 0.75rem; - line-height: 1rem; -} - -.text-sm { - font-size: 0.875rem; - line-height: 1.25rem; -} - -.text-base { - font-size: 1rem; - line-height: 1.5rem; -} - -.text-lg { - font-size: 1.125rem; - line-height: 1.75rem; -} - -.text-xl { - font-size: 1.25rem; - line-height: 1.75rem; -} - -.text-2xl { - font-size: 1.5rem; - line-height: 2rem; -} - -.text-3xl { - font-size: 1.875rem; - line-height: 2.25rem; -} - -.text-4xl { - font-size: 2.25rem; - line-height: 2.5rem; -} - -.text-5xl { - font-size: 3rem; - line-height: 1; -} - -.text-6xl { - font-size: 3.75rem; - line-height: 1; -} - -.text-7xl { - font-size: 4.5rem; - line-height: 1; -} - -.text-8xl { - font-size: 6rem; - line-height: 1; -} - -.text-9xl { - font-size: 8rem; - line-height: 1; -} - -.font-thin { - font-weight: 100; -} - -.font-extralight { - font-weight: 200; -} - -.font-light { - font-weight: 300; -} - -.font-normal { - font-weight: 400; -} - -.font-medium { - font-weight: 500; -} - -.font-semibold { - font-weight: 600; -} - -.font-bold { - font-weight: 700; -} - -.font-extrabold { - font-weight: 800; -} - -.font-black { - font-weight: 900; -} - -.uppercase { - text-transform: uppercase; -} - -.lowercase { - text-transform: lowercase; -} - -.capitalize { - text-transform: capitalize; -} - -.normal-case { - text-transform: none; -} - -.italic { - font-style: italic; -} - -.not-italic { - font-style: normal; -} - -.text-transparent { - color: transparent; -} - -.text-current { - color: currentColor; -} - -.text-black { - --tw-text-opacity: 1; - color: rgba(0, 0, 0, var(--tw-text-opacity)); -} - -.text-white { - --tw-text-opacity: 1; - color: rgba(255, 255, 255, var(--tw-text-opacity)); -} - -.text-gray-50 { - --tw-text-opacity: 1; - color: rgba(249, 250, 251, var(--tw-text-opacity)); -} - -.text-gray-100 { - --tw-text-opacity: 1; - color: rgba(243, 244, 246, var(--tw-text-opacity)); -} - -.text-gray-200 { - --tw-text-opacity: 1; - color: rgba(229, 231, 235, var(--tw-text-opacity)); -} - -.text-gray-300 { - --tw-text-opacity: 1; - color: rgba(209, 213, 219, var(--tw-text-opacity)); -} - -.text-gray-350 { - --tw-text-opacity: 1; - color: rgba(192, 196, 204, var(--tw-text-opacity)); -} - -.text-gray-400 { - --tw-text-opacity: 1; - color: rgba(156, 163, 175, var(--tw-text-opacity)); -} - -.text-gray-500 { - --tw-text-opacity: 1; - color: rgba(107, 114, 128, var(--tw-text-opacity)); -} - -.text-gray-600 { - --tw-text-opacity: 1; - color: rgba(75, 85, 99, var(--tw-text-opacity)); -} - -.text-gray-700 { - --tw-text-opacity: 1; - color: rgba(55, 65, 81, var(--tw-text-opacity)); -} - -.text-gray-800 { - --tw-text-opacity: 1; - color: rgba(31, 41, 55, var(--tw-text-opacity)); -} - -.text-gray-900 { - --tw-text-opacity: 1; - color: rgba(17, 24, 39, var(--tw-text-opacity)); -} - -.text-red-50 { - --tw-text-opacity: 1; - color: rgba(254, 242, 242, var(--tw-text-opacity)); -} - -.text-red-100 { - --tw-text-opacity: 1; - color: rgba(254, 226, 226, var(--tw-text-opacity)); -} - -.text-red-200 { - --tw-text-opacity: 1; - color: rgba(254, 202, 202, var(--tw-text-opacity)); -} - -.text-red-300 { - --tw-text-opacity: 1; - color: rgba(252, 165, 165, var(--tw-text-opacity)); -} - -.text-red-400 { - --tw-text-opacity: 1; - color: rgba(248, 113, 113, var(--tw-text-opacity)); -} - -.text-red-500 { - --tw-text-opacity: 1; - color: rgba(239, 68, 68, var(--tw-text-opacity)); -} - -.text-red-600 { - --tw-text-opacity: 1; - color: rgba(220, 38, 38, var(--tw-text-opacity)); -} - -.text-red-700 { - --tw-text-opacity: 1; - color: rgba(185, 28, 28, var(--tw-text-opacity)); -} - -.text-red-800 { - --tw-text-opacity: 1; - color: rgba(153, 27, 27, var(--tw-text-opacity)); -} - -.text-red-900 { - --tw-text-opacity: 1; - color: rgba(127, 29, 29, var(--tw-text-opacity)); -} - -.text-yellow-50 { - --tw-text-opacity: 1; - color: rgba(255, 251, 235, var(--tw-text-opacity)); -} - -.text-yellow-100 { - --tw-text-opacity: 1; - color: rgba(254, 243, 199, var(--tw-text-opacity)); -} - -.text-yellow-200 { - --tw-text-opacity: 1; - color: rgba(253, 230, 138, var(--tw-text-opacity)); -} - -.text-yellow-300 { - --tw-text-opacity: 1; - color: rgba(252, 211, 77, var(--tw-text-opacity)); -} - -.text-yellow-400 { - --tw-text-opacity: 1; - color: rgba(251, 191, 36, var(--tw-text-opacity)); -} - -.text-yellow-500 { - --tw-text-opacity: 1; - color: rgba(245, 158, 11, var(--tw-text-opacity)); -} - -.text-yellow-600 { - --tw-text-opacity: 1; - color: rgba(217, 119, 6, var(--tw-text-opacity)); -} - -.text-yellow-700 { - --tw-text-opacity: 1; - color: rgba(180, 83, 9, var(--tw-text-opacity)); -} - -.text-yellow-800 { - --tw-text-opacity: 1; - color: rgba(146, 64, 14, var(--tw-text-opacity)); -} - -.text-yellow-900 { - --tw-text-opacity: 1; - color: rgba(120, 53, 15, var(--tw-text-opacity)); -} - -.text-green-50 { - --tw-text-opacity: 1; - color: rgba(236, 253, 245, var(--tw-text-opacity)); -} - -.text-green-100 { - --tw-text-opacity: 1; - color: rgba(209, 250, 229, var(--tw-text-opacity)); -} - -.text-green-200 { - --tw-text-opacity: 1; - color: rgba(167, 243, 208, var(--tw-text-opacity)); -} - -.text-green-300 { - --tw-text-opacity: 1; - color: rgba(110, 231, 183, var(--tw-text-opacity)); -} - -.text-green-400 { - --tw-text-opacity: 1; - color: rgba(52, 211, 153, var(--tw-text-opacity)); -} - -.text-green-500 { - --tw-text-opacity: 1; - color: rgba(16, 185, 129, var(--tw-text-opacity)); -} - -.text-green-600 { - --tw-text-opacity: 1; - color: rgba(5, 150, 105, var(--tw-text-opacity)); -} - -.text-green-700 { - --tw-text-opacity: 1; - color: rgba(4, 120, 87, var(--tw-text-opacity)); -} - -.text-green-800 { - --tw-text-opacity: 1; - color: rgba(6, 95, 70, var(--tw-text-opacity)); -} - -.text-green-900 { - --tw-text-opacity: 1; - color: rgba(6, 78, 59, var(--tw-text-opacity)); -} - -.text-blue-50 { - --tw-text-opacity: 1; - color: rgba(239, 246, 255, var(--tw-text-opacity)); -} - -.text-blue-100 { - --tw-text-opacity: 1; - color: rgba(219, 234, 254, var(--tw-text-opacity)); -} - -.text-blue-200 { - --tw-text-opacity: 1; - color: rgba(191, 219, 254, var(--tw-text-opacity)); -} - -.text-blue-300 { - --tw-text-opacity: 1; - color: rgba(147, 197, 253, var(--tw-text-opacity)); -} - -.text-blue-400 { - --tw-text-opacity: 1; - color: rgba(96, 165, 250, var(--tw-text-opacity)); -} - -.text-blue-500 { - --tw-text-opacity: 1; - color: rgba(59, 130, 246, var(--tw-text-opacity)); -} - -.text-blue-600 { - --tw-text-opacity: 1; - color: rgba(37, 99, 235, var(--tw-text-opacity)); -} - -.text-blue-700 { - --tw-text-opacity: 1; - color: rgba(29, 78, 216, var(--tw-text-opacity)); -} - -.text-blue-800 { - --tw-text-opacity: 1; - color: rgba(30, 64, 175, var(--tw-text-opacity)); -} - -.text-blue-900 { - --tw-text-opacity: 1; - color: rgba(30, 58, 138, var(--tw-text-opacity)); -} - -.text-indigo-50 { - --tw-text-opacity: 1; - color: rgba(238, 242, 255, var(--tw-text-opacity)); -} - -.text-indigo-100 { - --tw-text-opacity: 1; - color: rgba(224, 231, 255, var(--tw-text-opacity)); -} - -.text-indigo-200 { - --tw-text-opacity: 1; - color: rgba(199, 210, 254, var(--tw-text-opacity)); -} - -.text-indigo-300 { - --tw-text-opacity: 1; - color: rgba(165, 180, 252, var(--tw-text-opacity)); -} - -.text-indigo-400 { - --tw-text-opacity: 1; - color: rgba(129, 140, 248, var(--tw-text-opacity)); -} - -.text-indigo-500 { - --tw-text-opacity: 1; - color: rgba(99, 102, 241, var(--tw-text-opacity)); -} - -.text-indigo-600 { - --tw-text-opacity: 1; - color: rgba(79, 70, 229, var(--tw-text-opacity)); -} - -.text-indigo-700 { - --tw-text-opacity: 1; - color: rgba(67, 56, 202, var(--tw-text-opacity)); -} - -.text-indigo-800 { - --tw-text-opacity: 1; - color: rgba(55, 48, 163, var(--tw-text-opacity)); -} - -.text-indigo-900 { - --tw-text-opacity: 1; - color: rgba(49, 46, 129, var(--tw-text-opacity)); -} - -.text-purple-50 { - --tw-text-opacity: 1; - color: rgba(245, 243, 255, var(--tw-text-opacity)); -} - -.text-purple-100 { - --tw-text-opacity: 1; - color: rgba(237, 233, 254, var(--tw-text-opacity)); -} - -.text-purple-200 { - --tw-text-opacity: 1; - color: rgba(221, 214, 254, var(--tw-text-opacity)); -} - -.text-purple-300 { - --tw-text-opacity: 1; - color: rgba(196, 181, 253, var(--tw-text-opacity)); -} - -.text-purple-400 { - --tw-text-opacity: 1; - color: rgba(167, 139, 250, var(--tw-text-opacity)); -} - -.text-purple-500 { - --tw-text-opacity: 1; - color: rgba(139, 92, 246, var(--tw-text-opacity)); -} - -.text-purple-600 { - --tw-text-opacity: 1; - color: rgba(124, 58, 237, var(--tw-text-opacity)); -} - -.text-purple-700 { - --tw-text-opacity: 1; - color: rgba(109, 40, 217, var(--tw-text-opacity)); -} - -.text-purple-800 { - --tw-text-opacity: 1; - color: rgba(91, 33, 182, var(--tw-text-opacity)); -} - -.text-purple-900 { - --tw-text-opacity: 1; - color: rgba(76, 29, 149, var(--tw-text-opacity)); -} - -.text-pink-50 { - --tw-text-opacity: 1; - color: rgba(253, 242, 248, var(--tw-text-opacity)); -} - -.text-pink-100 { - --tw-text-opacity: 1; - color: rgba(252, 231, 243, var(--tw-text-opacity)); -} - -.text-pink-200 { - --tw-text-opacity: 1; - color: rgba(251, 207, 232, var(--tw-text-opacity)); -} - -.text-pink-300 { - --tw-text-opacity: 1; - color: rgba(249, 168, 212, var(--tw-text-opacity)); -} - -.text-pink-400 { - --tw-text-opacity: 1; - color: rgba(244, 114, 182, var(--tw-text-opacity)); -} - -.text-pink-500 { - --tw-text-opacity: 1; - color: rgba(236, 72, 153, var(--tw-text-opacity)); -} - -.text-pink-600 { - --tw-text-opacity: 1; - color: rgba(219, 39, 119, var(--tw-text-opacity)); -} - -.text-pink-700 { - --tw-text-opacity: 1; - color: rgba(190, 24, 93, var(--tw-text-opacity)); -} - -.text-pink-800 { - --tw-text-opacity: 1; - color: rgba(157, 23, 77, var(--tw-text-opacity)); -} - -.text-pink-900 { - --tw-text-opacity: 1; - color: rgba(131, 24, 67, var(--tw-text-opacity)); -} - -.opacity-0 { - opacity: 0; -} - -.opacity-5 { - opacity: 0.05; -} - -.opacity-10 { - opacity: 0.1; -} - -.opacity-20 { - opacity: 0.2; -} - -.opacity-25 { - opacity: 0.25; -} - -.opacity-30 { - opacity: 0.3; -} - -.opacity-40 { - opacity: 0.4; -} - -.opacity-50 { - opacity: 0.5; -} - -.opacity-60 { - opacity: 0.6; -} - -.opacity-70 { - opacity: 0.7; -} - -.opacity-75 { - opacity: 0.75; -} - -.opacity-80 { - opacity: 0.8; -} - -.opacity-90 { - opacity: 0.9; -} - -.opacity-95 { - opacity: 0.95; -} - -.opacity-100 { - opacity: 1; -} -.h-1 { - height: 0.25rem; -} -.h-2 { - height: 0.5rem; -} -.h-3 { - height: 0.75rem; -} -.h-4 { - height: 1rem; -} -.h-5 { - height: 1.25rem; -} -.h-6 { - height: 1.5rem; -} -.h-10 { - height: 2.5rem !important; -} -.h-12 { - height: 3rem !important; -} -.h-full { - height: 100%; -} -.h-screen { - height: 100vh; -} -.w-4 { - width: 1rem !important; -} -.w-5 { - width: 1.25rem !important; -} -.w-6 { - width: 1.5rem !important; -} -.w-10 { - width: 2.5rem !important; -} -.w-12 { - width: 3rem !important; -} -.w-full { - width: 100% !important; -} - -.w-screen { - width: 100vw; -} - -.w-min { - width: min-content; -} - -.w-max { - width: max-content; -} - -.bg-white { - --tw-bg-opacity: 1; - background-color: rgba(255, 255, 255, var(--tw-bg-opacity)); -} -.bg-blue-100 { - --tw-bg-opacity: 1; - background-color: rgba(219, 234, 254, var(--tw-bg-opacity)); -} -.bg-blue-500 { - --tw-bg-opacity: 1; - background-color: rgba(59, 130, 246, var(--tw-bg-opacity)); -} -.bg-gray-50 { - --tw-bg-opacity: 1; - background-color: rgba(249, 250, 251, var(--tw-bg-opacity)); -} -.bg-gray-100 { - --tw-bg-opacity: 1; - background-color: rgba(243, 244, 246, var(--tw-bg-opacity)); -} -.bg-gray-200 { - --tw-bg-opacity: 1; - background-color: rgba(229, 231, 235, var(--tw-bg-opacity)); -} -.bg-gray-300 { - --tw-bg-opacity: 1; - background-color: rgba(209, 213, 219, var(--tw-bg-opacity)); -} -.text-green-400 { - --tw-text-opacity: 1; - color: rgba(52, 211, 153, var(--tw-text-opacity)); -} -.text-black { - --tw-text-opacity: 1; - color: rgba(0, 0, 0, var(--tw-text-opacity)); -} - -.text-white { - --tw-text-opacity: 1; - color: rgba(255, 255, 255, var(--tw-text-opacity)); -} - -.text-gray-50 { - --tw-text-opacity: 1; - color: rgba(249, 250, 251, var(--tw-text-opacity)); -} - -.text-gray-100 { - --tw-text-opacity: 1; - color: rgba(243, 244, 246, var(--tw-text-opacity)); -} - -.text-gray-200 { - --tw-text-opacity: 1; - color: rgba(229, 231, 235, var(--tw-text-opacity)); -} - -.text-gray-300 { - --tw-text-opacity: 1; - color: rgba(209, 213, 219, var(--tw-text-opacity)); -} - -.text-gray-400 { - --tw-text-opacity: 1; - color: rgba(156, 163, 175, var(--tw-text-opacity)); -} - -.text-gray-500 { - --tw-text-opacity: 1; - color: rgba(107, 114, 128, var(--tw-text-opacity)); -} - -.text-gray-600 { - --tw-text-opacity: 1; - color: rgba(75, 85, 99, var(--tw-text-opacity)); -} - -.text-gray-700 { - --tw-text-opacity: 1; - color: rgba(55, 65, 81, var(--tw-text-opacity)); -} - -.text-gray-800 { - --tw-text-opacity: 1; - color: rgba(31, 41, 55, var(--tw-text-opacity)); -} - -.text-gray-900 { - --tw-text-opacity: 1; - color: rgba(17, 24, 39, var(--tw-text-opacity)); -} -.bg-green-100 { - --tw-bg-opacity: 1; - background-color: rgba(209, 250, 229, var(--tw-bg-opacity)); -} -.bg-blue-50 { - --tw-bg-opacity: 1; - background-color: rgba(239, 246, 255, var(--tw-bg-opacity)); -} -.border-0 { - border-width: 0px; -} -.border-1 { - border-width: 1px; -} -.border-2 { - border-width: 2px; -} -.border-4 { - border-width: 4px; -} -.rounded-2xl { - border-radius: 1rem; -} -.rounded-3xl { - border-radius: 1.5rem; -} -.rounded-full { - border-radius: 50%; -} - -.shadow-sm { - --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); -} - -.shadow { - --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); -} - -.shadow-md { - --tw-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); -} - -.shadow-lg { - --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); -} - -.shadow-xl { - --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); -} - -.shadow-2xl { - --tw-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); -} - -.shadow-inner { - --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); -} - -.shadow-none { - --tw-shadow: 0 0 #0000; - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); -} diff --git a/src/components/ConfigInfo/ConfigInfo.vue b/src/components/ConfigInfo/ConfigInfo.vue index c86dbd4..5afb24c 100644 --- a/src/components/ConfigInfo/ConfigInfo.vue +++ b/src/components/ConfigInfo/ConfigInfo.vue @@ -27,7 +27,7 @@ - + 扫码添加客服微信 @@ -46,10 +46,10 @@ export default { data() { return { itemList: [ - { head: '基本信息', open: true, body: '123', img: require('./img/1.png') }, - { head: '药物使用记录', open: false, body: '123', img: require('./img/2.png') }, - { head: 'Zarit照顾者分担量表', open: false, body: '123', img: require('./img/3.png') }, - { head: '家属成员', open: false, body: '123', img: require('./img/4.png') }, + { head: '基本信息', open: true, body: '123', img: 'https://www.tall.wiki/staticrec/guide/menu1.png' }, + { head: '药物使用记录', open: false, body: '123', img: 'https://www.tall.wiki/staticrec/guide/menu2.png' }, + { head: 'Zarit照顾者分担量表', open: false, body: '123', img: 'https://www.tall.wiki/staticrec/guide/menu3.png' }, + { head: '家属成员', open: false, body: '123', img: 'https://www.tall.wiki/staticrec/guide/menu4.png' }, ], headStyle: { borderBottom: '1px solid #f8f8f8', diff --git a/src/components/ConfigInfo/components/Info copy.vue b/src/components/ConfigInfo/components/Info copy.vue deleted file mode 100644 index 366bd63..0000000 --- a/src/components/ConfigInfo/components/Info copy.vue +++ /dev/null @@ -1,332 +0,0 @@ - - - - - - - diff --git a/src/components/ConfigInfo/img/1.png b/src/components/ConfigInfo/img/1.png deleted file mode 100644 index 7988c45..0000000 Binary files a/src/components/ConfigInfo/img/1.png and /dev/null differ diff --git a/src/components/ConfigInfo/img/2.png b/src/components/ConfigInfo/img/2.png deleted file mode 100644 index 2a829e7..0000000 Binary files a/src/components/ConfigInfo/img/2.png and /dev/null differ diff --git a/src/components/ConfigInfo/img/3.png b/src/components/ConfigInfo/img/3.png deleted file mode 100644 index a0e09df..0000000 Binary files a/src/components/ConfigInfo/img/3.png and /dev/null differ diff --git a/src/components/ConfigInfo/img/4.png b/src/components/ConfigInfo/img/4.png deleted file mode 100644 index 51598fd..0000000 Binary files a/src/components/ConfigInfo/img/4.png and /dev/null differ diff --git a/src/components/ConfigInfo/img/weixin.png b/src/components/ConfigInfo/img/weixin.png deleted file mode 100644 index d41d0e6..0000000 Binary files a/src/components/ConfigInfo/img/weixin.png and /dev/null differ diff --git a/src/components/Projects/ProjectItem.vue b/src/components/Projects/ProjectItem.vue index 395b6bc..038c9ce 100644 --- a/src/components/Projects/ProjectItem.vue +++ b/src/components/Projects/ProjectItem.vue @@ -119,9 +119,10 @@ export default { methods: { // 打开项目详情 openProject(project) { + console.log('project: ', project); const { name, id, url } = project; url && (uni.$t.domain = url); - this.$u.route('pages/project/project', { + this.$u.route('/pagesA/project/project', { u: this.userId, p: id, pname: name, diff --git a/src/components/TimeLine copy/TimeLine.vue b/src/components/TimeLine copy/TimeLine.vue deleted file mode 100644 index 21739c3..0000000 --- a/src/components/TimeLine copy/TimeLine.vue +++ /dev/null @@ -1,127 +0,0 @@ - - - diff --git a/src/components/TimeLine copy/component/Barrier.vue b/src/components/TimeLine copy/component/Barrier.vue deleted file mode 100644 index 590e4f9..0000000 --- a/src/components/TimeLine copy/component/Barrier.vue +++ /dev/null @@ -1,42 +0,0 @@ - - - - diff --git a/src/components/TimeLine copy/component/TaskTools.vue b/src/components/TimeLine copy/component/TaskTools.vue deleted file mode 100644 index a5d31fb..0000000 --- a/src/components/TimeLine copy/component/TaskTools.vue +++ /dev/null @@ -1,185 +0,0 @@ - - - - - diff --git a/src/components/TimeLine copy/component/TimeBox.vue b/src/components/TimeLine copy/component/TimeBox.vue deleted file mode 100644 index 5b14178..0000000 --- a/src/components/TimeLine copy/component/TimeBox.vue +++ /dev/null @@ -1,142 +0,0 @@ - - - - - diff --git a/src/components/TimeLine copy/component/TimeStatus.vue b/src/components/TimeLine copy/component/TimeStatus.vue deleted file mode 100644 index 7055166..0000000 --- a/src/components/TimeLine copy/component/TimeStatus.vue +++ /dev/null @@ -1,231 +0,0 @@ - - - - - diff --git a/src/components/TimeLine copy/component/Title.vue b/src/components/TimeLine copy/component/Title.vue deleted file mode 100644 index fafec0b..0000000 --- a/src/components/TimeLine copy/component/Title.vue +++ /dev/null @@ -1,7 +0,0 @@ - diff --git a/src/components/Upload/Upload.vue b/src/components/Upload/Upload.vue index 8f230c2..400bf52 100644 --- a/src/components/Upload/Upload.vue +++ b/src/components/Upload/Upload.vue @@ -9,27 +9,29 @@ class="icons icon1" size="76" name="https://www.tall.wiki/staticrec/guide/icon1.png" - @click="openPage('/pages/scan-code/scan-code')" + @click="openPage('/pagesB/scan-code/scan-code')" > + + @@ -53,7 +55,7 @@ export default { this.$emit('success'); data.url && (uni.$t.domain = data.url); setTimeout(() => { - this.$u.route('/pages/project/project', { + this.$u.route('/pagesA/project/project', { u: this.userId, p: data.id, pname: data.pname, @@ -72,8 +74,18 @@ export default { }, openPage(url) { - console.log('url: ', url); uni.navigateTo({ url: `${url}` }); + this.showMenu = false; + }, + + // 扫码 + scanCode() { + uni.scanCode({ + success: function (res) { + console.log('条码类型:' + res.scanType); + console.log('条码内容:' + res.result); + }, + }); }, }, }; diff --git a/src/components/Upload/img/icon1.png b/src/components/Upload/img/icon1.png deleted file mode 100644 index 882c3ab..0000000 Binary files a/src/components/Upload/img/icon1.png and /dev/null differ diff --git a/src/components/Upload/img/icon2.png b/src/components/Upload/img/icon2.png deleted file mode 100644 index c89d442..0000000 Binary files a/src/components/Upload/img/icon2.png and /dev/null differ diff --git a/src/components/Upload/img/icon3.png b/src/components/Upload/img/icon3.png deleted file mode 100644 index 537aac6..0000000 Binary files a/src/components/Upload/img/icon3.png and /dev/null differ diff --git a/src/components/Upload/img/icon4.png b/src/components/Upload/img/icon4.png deleted file mode 100644 index a24f443..0000000 Binary files a/src/components/Upload/img/icon4.png and /dev/null differ diff --git a/src/manifest.json b/src/manifest.json index 98cdd03..4dec734 100644 --- a/src/manifest.json +++ b/src/manifest.json @@ -57,7 +57,7 @@ /* 快应用特有相关 */ }, "mp-weixin": { - "appid": "wxf72a76c2ea24a472", + "appid": "wx733e229f00dc5c6f", "setting": { "urlCheck": false }, diff --git a/src/pages.json b/src/pages.json index 58868ce..35b494e 100644 --- a/src/pages.json +++ b/src/pages.json @@ -14,54 +14,73 @@ "navigationStyle": "default" } }, + { + "path": "pages/git-phone-power/git-phone-power", + "style": { + "navigationBarTitleText": "授权信息", + "navigationStyle": "custom" + } + } + ], + "subPackages":[ { - "path": "pages/project/project", - "style": { - "navigationBarTitleText": "项目详情页", - "navigationStyle": "custom" - } - }, - { - "path": "pages/git-phone-power/git-phone-power", - "style": { - "navigationBarTitleText": "授权信息", - "navigationStyle": "custom" - } - }, - { - "path": "pages/project-webview/project-webview", - "style": { - "navigationBarTitleText": "项目详情页", - "navigationStyle": "custom" - } - }, - { - "path": "pages/scan-code/scan-code", - "style": { - "navigationBarTitleText": "扫码", - "navigationStyle": "default" - } - }, - { - "path": "pages/add-info/add-info", - "style": { - "navigationBarTitleText": "基本信息", - "navigationStyle": "default" - } - }, - { - "path": "pages/ascription/ascription", - "style": { - "navigationBarTitleText": "训练归属", - "navigationStyle": "default" - } + "root": "pagesA", + "pages": [ + { + "path": "project/project", + "style": { + "navigationBarTitleText": "项目详情页", + "navigationStyle": "custom" + } + }, + { + "path": "project-webview/project-webview", + "style": { + "navigationBarTitleText": "项目详情页", + "navigationStyle": "custom" + } + } + ] }, { - "path": "pages/hold-all/hold-all", - "style": { - "navigationBarTitleText": "工具箱", - "navigationStyle": "default" - } + "root": "pagesB", + "pages": [ + { + "path": "scan-code/scan-code", + "style": { + "navigationBarTitleText": "扫码", + "navigationStyle": "default" + } + }, + { + "path": "add-info/add-info", + "style": { + "navigationBarTitleText": "基本信息", + "navigationStyle": "default" + } + }, + { + "path": "ascription/ascription", + "style": { + "navigationBarTitleText": "训练归属", + "navigationStyle": "default" + } + }, + { + "path": "hold-all/hold-all", + "style": { + "navigationBarTitleText": "工具箱", + "navigationStyle": "default" + } + }, + { + "path": "wifi-binding/wifi-binding", + "style": { + "navigationBarTitleText": "WIFI绑定", + "navigationStyle": "default" + } + } + ] } ], "globalStyle": { diff --git a/src/pages/ascription/ascription.vue b/src/pages/ascription/ascription.vue deleted file mode 100644 index 34c4151..0000000 --- a/src/pages/ascription/ascription.vue +++ /dev/null @@ -1,87 +0,0 @@ - - - - - diff --git a/src/pages/ascription/img/blue.png b/src/pages/ascription/img/blue.png deleted file mode 100644 index 09ac301..0000000 Binary files a/src/pages/ascription/img/blue.png and /dev/null differ diff --git a/src/pages/ascription/img/gray.png b/src/pages/ascription/img/gray.png deleted file mode 100644 index 26926e5..0000000 Binary files a/src/pages/ascription/img/gray.png and /dev/null differ diff --git a/src/pages/ascription/img/red.png b/src/pages/ascription/img/red.png deleted file mode 100644 index 6caa527..0000000 Binary files a/src/pages/ascription/img/red.png and /dev/null differ diff --git a/src/pages/ascription/img/yellow.png b/src/pages/ascription/img/yellow.png deleted file mode 100644 index 6d9f2a2..0000000 Binary files a/src/pages/ascription/img/yellow.png and /dev/null differ diff --git a/src/pages/project/img/default.png b/src/pages/project/img/default.png deleted file mode 100644 index 2dfc638..0000000 Binary files a/src/pages/project/img/default.png and /dev/null differ diff --git a/src/pages/scan-code/scan-code.vue b/src/pages/scan-code/scan-code.vue deleted file mode 100644 index ad20ffe..0000000 --- a/src/pages/scan-code/scan-code.vue +++ /dev/null @@ -1,9 +0,0 @@ - - - - - diff --git a/src/pages/project-webview/project-webview.vue b/src/pagesA/project-webview/project-webview.vue similarity index 100% rename from src/pages/project-webview/project-webview.vue rename to src/pagesA/project-webview/project-webview.vue diff --git a/src/pages/project/project.vue b/src/pagesA/project/project.vue similarity index 100% rename from src/pages/project/project.vue rename to src/pagesA/project/project.vue diff --git a/src/pages/add-info/add-info.vue b/src/pagesB/add-info/add-info.vue similarity index 100% rename from src/pages/add-info/add-info.vue rename to src/pagesB/add-info/add-info.vue diff --git a/src/pagesB/ascription/ascription.vue b/src/pagesB/ascription/ascription.vue new file mode 100644 index 0000000..4ec6633 --- /dev/null +++ b/src/pagesB/ascription/ascription.vue @@ -0,0 +1,198 @@ + + + + + diff --git a/src/pages/hold-all/hold-all.vue b/src/pagesB/hold-all/hold-all.vue similarity index 81% rename from src/pages/hold-all/hold-all.vue rename to src/pagesB/hold-all/hold-all.vue index 075d002..19fee86 100644 --- a/src/pages/hold-all/hold-all.vue +++ b/src/pagesB/hold-all/hold-all.vue @@ -4,7 +4,8 @@ {{ item.title }} - {{ item.name || '绑定' }} + {{ item.name }} + 绑定 @@ -45,6 +46,12 @@ export default { ], }; }, + + methods: { + openPage(url) { + uni.navigateTo({ url: `${url}` }); + }, + }, }; diff --git a/src/pagesB/scan-code/scan-code.vue b/src/pagesB/scan-code/scan-code.vue new file mode 100644 index 0000000..de42372 --- /dev/null +++ b/src/pagesB/scan-code/scan-code.vue @@ -0,0 +1,123 @@ + + + + + diff --git a/src/pagesB/wifi-binding/wifi-binding.vue b/src/pagesB/wifi-binding/wifi-binding.vue new file mode 100644 index 0000000..53499ed --- /dev/null +++ b/src/pagesB/wifi-binding/wifi-binding.vue @@ -0,0 +1,40 @@ + + + + + diff --git a/src/plugins/p-subproject/p-subproject.vue b/src/plugins/p-subproject/p-subproject.vue index 602ccd8..d23d0ba 100644 --- a/src/plugins/p-subproject/p-subproject.vue +++ b/src/plugins/p-subproject/p-subproject.vue @@ -45,7 +45,7 @@ export default { openProject(project) { const { name, id, url } = project; url && (uni.$t.domain = url); - this.$u.route('pages/project/project', { + this.$u.route('/pagesA/project/project', { u: this.userId, p: id, pname: name, diff --git a/src/plugins/p-wbs-import/p-wbs-import.vue b/src/plugins/p-wbs-import/p-wbs-import.vue index 3ca0ab6..aa21030 100644 --- a/src/plugins/p-wbs-import/p-wbs-import.vue +++ b/src/plugins/p-wbs-import/p-wbs-import.vue @@ -38,7 +38,7 @@ export default { // 直接打开导入的项目 this.onUploadSuccess(); setTimeout(() => { - this.$u.route('/pages/project/project', { + this.$u.route('/pagesA/project/project', { u: this.userId, p: data.id, pname: data.pname, diff --git a/src/uni.scss b/src/uni.scss index c1a8582..7f8e103 100644 --- a/src/uni.scss +++ b/src/uni.scss @@ -13,6 +13,7 @@ */ @import 'uview-ui/theme.scss'; @import './common/styles/tailwind.scss'; + /* 颜色变量 */ /* 行为相关颜色 */ $uni-color-primary: #0284c7; $uni-color-success: #4cd964; @@ -29,6 +30,7 @@ $roleChoiceColor: #f59e0b; /* 背景颜色 */ $uni-bg-color: #ffffff; +$uni-bg-color-blue: #1890ff; $uni-bg-color-grey: #f8f8f8; $uni-bg-color-hover: #f1f1f1; //点击状态颜色 $uni-bg-color-mask: rgba(0, 0, 0, 0.4); //遮罩颜色