diff --git a/src/app.css b/src/app.css
index 2f238a0..2cbe51e 100644
--- a/src/app.css
+++ b/src/app.css
@@ -19,7 +19,7 @@ html{
body{
margin: 0;
padding: 0;
- line-height: 1.3;
+ line-height: 1.4;
background-color: var(--bg-color);
}
@@ -36,7 +36,7 @@ html, body{
:root {
--white: #fff;
--red: #8bc3f4;
- --bg-color: #181C1E;
+ --bg-color: #1A1C1E;
--grey-one: #252B31;
--grey-two: #28313b;
--grey-three: #3c4759c3;
@@ -48,8 +48,7 @@ html, body{
}
::selection{
- color: var(--white);
- background: var(--red);
+ background: var(--grey-three);
}
/*-----headings-----*/
@@ -58,6 +57,7 @@ h1{
color: var(--white);
font-weight: 700;
line-height: 0.75em;
+ font-size: 1.75rem;
}
h2{
@@ -68,35 +68,42 @@ h2{
h3{
color: var(--white);
- font-weight: 600;
+ font-weight: 500;
font-size: 1rem;
}
h4{
- color:var(--grey-six);
+ color:var(--white);
font-weight:500;
- font-size: 1rem;
+ font-size: 1.25rem;
+ letter-spacing: 0.02rem;
}
h5{
color:var(--white);
font-weight: 300;
font-size: 1rem;
+ letter-spacing: 0.02rem;
}
-/*-----scrollbar-----*/
-::-webkit-scrollbar{
- width: 20px;
+h6{
+ color:var(--grey-five);
+ font-weight: 300;
+ font-size: 1rem;
+ letter-spacing: 0.02rem;
+
+}
+
+::-webkit-scrollbar {
+ width: 11px;
background-color: transparent;
}
-::-webkit-scrollbar-thumb{
- background-color: var(--grey-three);
- border-radius: 20px;
- border: 6px solid transparent;
+::-webkit-scrollbar-thumb {
+ background-color: var(--grey-two);
background-clip: content-box;
}
-::-webkit-scrollbar-thumb:hover{
- background-color: var(--grey-seven);
+::-webkit-scrollbar-thumb:hover {
+ background-color: var(--grey-three);
}
\ No newline at end of file
diff --git a/src/lib/components/atoms/ContributorButton.svelte b/src/lib/components/atoms/ContributorButton.svelte
index 8a9accb..70e0a5d 100644
--- a/src/lib/components/atoms/ContributorButton.svelte
+++ b/src/lib/components/atoms/ContributorButton.svelte
@@ -1,13 +1,13 @@
-
+
{username}
@@ -17,6 +17,9 @@
color: var(--white);
text-decoration: none;
text-align: center;
+ padding: 0.5rem;
+ border-radius: 12px;
+ transition: all 0.3s var(--bezier-one);
}
button {
@@ -24,9 +27,8 @@
border-radius: 200px;
overflow: hidden;
border: 0;
- /* padding: 5px 5px; */
- width:86px;
- height:86px;
+ width:45px;
+ height:45px;
max-height: 86px;
max-width: 86px;
cursor: pointer;
@@ -36,8 +38,12 @@
user-select: none;
}
- a:hover > button {
- transform: translateY(-5%);
+ a:hover {
+ background-color: var(--grey-one);
+ }
+
+ h2 {
+ font-size: 1rem;
}
img {
diff --git a/src/lib/components/molecules/ContributorHost.svelte b/src/lib/components/molecules/ContributorHost.svelte
index 3b052d9..279d58b 100644
--- a/src/lib/components/molecules/ContributorHost.svelte
+++ b/src/lib/components/molecules/ContributorHost.svelte
@@ -1,29 +1,57 @@
-