BlissRoms Website v2
Signed-off-by: Jackeagle <jackeagle102@gmail.com>
diff --git a/style.css b/style.css
new file mode 100644
index 0000000..3fac28d
--- /dev/null
+++ b/style.css
@@ -0,0 +1,181 @@
+:root {
+ --dl-color-gray-500: #595959;
+ --dl-color-gray-700: #999999;
+ --dl-color-gray-900: #D9D9D9;
+ --dl-size-size-large: 144px;
+ --dl-size-size-small: 48px;
+ --dl-color-danger-300: #A22020;
+ --dl-color-danger-500: #BF2626;
+ --dl-color-danger-700: #E14747;
+ --dl-color-gray-black: #000000;
+ --dl-color-gray-white: #FFFFFF;
+ --dl-size-size-medium: 96px;
+ --dl-size-size-xlarge: 192px;
+ --dl-size-size-xsmall: 16px;
+ --dl-space-space-unit: 16px;
+ --dl-color-primary-100: #003EB3;
+ --dl-color-primary-300: #0074F0;
+ --dl-color-primary-500: #14A9FF;
+ --dl-color-primary-700: #85DCFF;
+ --dl-color-success-300: #199033;
+ --dl-color-success-500: #32A94C;
+ --dl-color-success-700: #4CC366;
+ --dl-size-size-xxlarge: 288px;
+ --dl-size-size-maxwidth: 1400px;
+ --dl-color-bliss-primary: #0000ffff;
+ --dl-radius-radius-round: 50%;
+ --dl-space-space-halfunit: 8px;
+ --dl-space-space-sixunits: 96px;
+ --dl-space-space-twounits: 32px;
+ --dl-color-bliss-secondary: #0073e5ff;
+ --dl-radius-radius-radius2: 2px;
+ --dl-radius-radius-radius4: 4px;
+ --dl-radius-radius-radius8: 8px;
+ --dl-space-space-fiveunits: 80px;
+ --dl-space-space-fourunits: 64px;
+ --dl-space-space-threeunits: 48px;
+ --dl-space-space-oneandhalfunits: 24px;
+}
+.button {
+ color: var(--dl-color-gray-black);
+ cursor: pointer;
+ display: inline-block;
+ padding: 0.5rem 1rem;
+ border-color: var(--dl-color-gray-black);
+ border-width: 1px;
+ border-radius: 4px;
+ background-color: var(--dl-color-gray-white);
+}
+.input {
+ color: var(--dl-color-gray-black);
+ cursor: auto;
+ padding: 0.5rem 1rem;
+ border-color: var(--dl-color-gray-black);
+ border-width: 1px;
+ border-radius: 4px;
+ background-color: var(--dl-color-gray-white);
+}
+.textarea {
+ color: var(--dl-color-gray-black);
+ cursor: auto;
+ padding: 0.5rem;
+ border-color: var(--dl-color-gray-black);
+ border-width: 1px;
+ border-radius: 4px;
+ background-color: var(--dl-color-gray-white);
+}
+.list {
+ width: 100%;
+ margin: 1em 0px 1em 0px;
+ display: block;
+ padding: 0px 0px 0px 1.5rem;
+ list-style-type: none;
+ list-style-position: outside;
+}
+.list-item {
+ display: list-item;
+}
+.teleport-show {
+ display: flex !important;
+}
+.nav-link {
+ font-style: normal;
+ transition: 0.3s;
+ font-weight: 500;
+}
+.nav-link:hover {
+ color: var(--dl-color-bliss-primary);
+ cursor: pointer;
+}
+.feature-card {
+ gap: 12px;
+ flex: 0 0 auto;
+ width: auto;
+ display: flex;
+ padding: var(--dl-space-space-unit);
+ max-width: 280px;
+ transition: 0.3s;
+ align-items: flex-start;
+ border-color: #98BDF9;
+ border-width: 1.6px;
+ border-radius: 16px;
+ flex-direction: column;
+ background-color: #C5DBFD;
+}
+.feature-card:hover {
+ box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
+}
+.teleport-menu-close {
+ width: var(--dl-size-size-xsmall);
+ height: var(--dl-size-size-xsmall);
+}
+.teleport-menu-burger {
+ display: none;
+}
+.teleport-menu-mobile {
+ top: 0px;
+ left: 0px;
+ width: 100%;
+ height: 100vh;
+ display: none;
+ padding: 32px;
+ z-index: 100;
+ position: absolute;
+ flex-direction: column;
+ justify-content: space-between;
+ background-color: #fff;
+}
+.download-card {
+ flex: 0 0 auto;
+ width: 90%;
+ display: flex;
+ position: relative;
+ margin-top: var(--dl-space-space-threeunits);
+ transition: 0.3s;
+ align-items: center;
+ padding-left: var(--dl-space-space-threeunits);
+ border-radius: 32px;
+ padding-right: 0px;
+ flex-direction: row;
+ justify-content: center;
+ background-color: #95F9C3;
+ border-top-left-radius: 32px;
+ border-top-right-radius: 32px;
+ border-bottom-left-radius: 0;
+ border-bottom-right-radius: 0;
+}
+
+.content {
+ font-size: 16px;
+ font-family: Inter;
+ font-weight: 400;
+ line-height: 1.15;
+ text-transform: none;
+ text-decoration: none;
+}
+.heading {
+ font-size: 32px;
+ font-family: Inter;
+ font-weight: 700;
+ line-height: 1.15;
+ text-transform: none;
+ text-decoration: none;
+}
+
+@media(max-width: 767px) {
+ .nav-link {
+ margin-bottom: var(--dl-space-space-unit);
+ }
+ .teleport-menu-burger {
+ display: flex;
+ align-items: center;
+ justify-content: center;
+ }
+}
+@media(max-width: 479px) {
+ .teleport-menu-mobile {
+ height: auto;
+ display: none;
+ padding: 16px;
+ }
+}