diff --git a/docs/.vitepress/theme/color.scss b/docs/.vitepress/theme/color.scss index b86a525..609ce90 100644 --- a/docs/.vitepress/theme/color.scss +++ b/docs/.vitepress/theme/color.scss @@ -1,8 +1,8 @@ :root { --white: #fff; --white-smoke: #f3f3f3; - --white-smooth: #e0e0e0; - --platinum: #e0e0e0; + --white-smooth: #e1e1e1; + --platinum: #ebebeb; --black: #000; --erie-black: #181818; diff --git a/docs/.vitepress/theme/components/Footer.vue b/docs/.vitepress/theme/components/Footer.vue index 02a1051..ac329de 100644 --- a/docs/.vitepress/theme/components/Footer.vue +++ b/docs/.vitepress/theme/components/Footer.vue @@ -18,7 +18,9 @@ footer { text-align: center; + border-radius: 40px 40px 0 0; background-color: var(--footer-bg); + color: var(--text-color); padding: 15px; #red { @@ -41,7 +43,7 @@ footer { a { text-decoration: none; - color: var(--text-color) !important; + color: var(--text-color); } #source-code { diff --git a/docs/.vitepress/theme/style.scss b/docs/.vitepress/theme/style.scss index aa53552..194ef7b 100644 --- a/docs/.vitepress/theme/style.scss +++ b/docs/.vitepress/theme/style.scss @@ -22,23 +22,21 @@ body { header { display: flex; + align-items: center; + justify-content: center; text-align: center; - width: 100%; - height: 45rem; + height: 35rem; + border-radius: 0 0 40px 40px; background: linear-gradient(95deg, #92ff7a 32.27%, #ddef6f 68.51%); h1 { - color: #101010; + color: #1f1f1f; font-family: "Poppins"; - font-size: 4.0625rem; + font-size: 3.2rem; font-style: normal; - font-weight: 900; + font-weight: 850; line-height: 94.523%; - text-align: left; - position: relative; - top: 80%; - left: 50%; - transform: translate(-50%, -50%); + text-align: center; } @media screen and (max-width: 48rem) { diff --git a/package.json b/package.json index bfb1225..ccdee6e 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "semantic-html", - "version": "0.7.1", + "version": "0.9.0", "private": true, "scripts": { "docs:dev": "vitepress dev docs",