Skip to content

Commit

Permalink
Minor styling improvement. Resized Join page text smaller
Browse files Browse the repository at this point in the history
  • Loading branch information
Weile-Zheng committed May 14, 2024
1 parent 9718b33 commit 0da26c9
Showing 1 changed file with 25 additions and 24 deletions.
49 changes: 25 additions & 24 deletions styles/globals.css
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,21 @@
@tailwind components;
@tailwind utilities;



.hero {
@apply pt-24;
background: radial-gradient(50% 50% at 50% 50%, #896AE4 0%, rgba(67, 151, 117, 0) 100%), conic-gradient(from 174.92deg at 50% 50%, #3E9644 -56.25deg, #896AE4 27.03deg, #34C5A2 169.15deg, #3E9644 303.75deg, #896AE4 387.03deg);
background: radial-gradient(
50% 50% at 50% 50%,
#896ae4 0%,
rgba(67, 151, 117, 0) 100%
),
conic-gradient(
from 174.92deg at 50% 50%,
#3e9644 -56.25deg,
#896ae4 27.03deg,
#34c5a2 169.15deg,
#3e9644 303.75deg,
#896ae4 387.03deg
);
}

.glow {
Expand All @@ -20,7 +30,6 @@
.bullets {
@apply grid-cols-3;
grid-template-rows: 1fr auto 1fr;

}

@media (max-width: 640px) {
Expand All @@ -30,7 +39,6 @@
}
}


.markdown h1 {
@apply text-4xl;
@apply mb-4;
Expand All @@ -48,7 +56,7 @@

.markdown h3 {
@apply text-2xl;
@apply mb-5;
@apply mb-4;
@apply font-normal;
@apply font-bold;
}
Expand All @@ -60,7 +68,6 @@
}

.markdown p {
@apply text-xl;
@apply mb-3;
@apply leading-8;
}
Expand All @@ -69,7 +76,7 @@
@apply font-bold;
@apply underline;
@apply transition;
@apply text-primary-light
@apply text-primary-light;
}

.markdown ul {
Expand All @@ -85,10 +92,9 @@
}

.markdown hr {
@apply my-6;
@apply my-5;
}


.markdown strong {
@apply font-bold;
}
Expand All @@ -97,19 +103,19 @@
@apply m-4;
@apply bg-grey;
@apply bg-grey;
color: #ffffff;
color: #ffffff;
@apply rounded-lg;
@apply p-5;
}

.markdown u {
@apply font-normal
@apply font-normal;
}

.markdown .md-button {
@apply rounded-lg;
@apply p-5;
@apply lg:text-xl;
@apply lg:text-lg;
@apply text-base;
@apply hover:-translate-y-1;
@apply bg-translucent;
Expand All @@ -122,14 +128,13 @@
}

.markdown .md-button-wrapper {
@apply py-4;
@apply mb-6;
@apply py-6;
@apply mb-2;
@apply hover:-translate-y-2;
@apply transition;
@apply w-fit;
}


.markdown .highlight {
@apply font-bold;
@apply text-primary-light;
Expand All @@ -139,8 +144,8 @@
--fc-page-bg-color: #333333;
--fc-list-event-hover-bg-color: #333333;
--fc-border-color: none;
--fc-button-bg-color: #896AE4;
--fc-button-border-color: #896AE4;
--fc-button-bg-color: #896ae4;
--fc-button-border-color: #896ae4;
--fc-button-hover-bg-color: #744ee3;
--fc-button-hover-border-color: #744ee3;
--fc-button-active-bg-color: #744ee3;
Expand All @@ -152,7 +157,7 @@
border-radius: 0.5rem;
}

.fc .fc-list-sticky .fc-list-day>* {
.fc .fc-list-sticky .fc-list-day > * {
border-radius: 0.5rem;
}

Expand Down Expand Up @@ -187,7 +192,7 @@

/* Hover effect */
.scroll-up-button:hover {
background-color: #896AE4; /* Button background color on hover */
background-color: #896ae4; /* Button background color on hover */
transform: scale(1.01); /* Scale up on hover */
@apply hover:-translate-y-2;
}
Expand All @@ -211,7 +216,3 @@ html {
transform: translateY(-100%);
}
}




0 comments on commit 0da26c9

Please sign in to comment.