diff --git a/landing/info-block.css b/landing/info-block.css index 425f8a623..99b967b56 100644 --- a/landing/info-block.css +++ b/landing/info-block.css @@ -1,40 +1,41 @@ .textContainer { width: 910px; max-width: 100vw; padding: 120px 32px; } .header { color: var(--white-80); margin-bottom: 40px; } .header span { background: linear-gradient(90deg, #5d34b3 0%, #a314d5 49.31%); background-clip: text; -webkit-background-clip: text; -webkit-text-fill-color: transparent; } .linkContainer { display: flex; align-items: center; width: fit-content; + margin-top: 16px; } .link { color: var(--white-100); text-decoration: underline; margin-right: 8px; transition: color 150ms; } .icon { color: var(--white-100); transition: color 150ms; } .linkContainer:hover .link, .linkContainer:hover .icon { color: var(--violet-dark-100); } diff --git a/landing/landing.css b/landing/landing.css index 03a2e90b7..64f2029c7 100644 --- a/landing/landing.css +++ b/landing/landing.css @@ -1,56 +1,56 @@ .container { background: radial-gradient(ellipse at bottom, #1f252e, #111827) fixed; font-family: var(--sans-serif); -moz-osx-font-smoothing: grayscale; text-rendering: optimizeLegibility; color: white; word-break: break-word; height: 100%; position: relative; z-index: var(--landing-page-z-index); } .innerContainer { background-color: var(--page-background); margin: 0; padding: 0; min-height: 100vh; } .innerContainerMobileNav { overflow-y: hidden; height: 100%; } .pageContentContainer { position: relative; } .keyserverInfo { display: flex; flex-direction: column; align-items: center; background-color: var(--light-dark-page-background); } .teamInfo { display: flex; flex-direction: column; align-items: center; } .paragraph { color: var(--white-100); - margin-bottom: 40px; + padding-bottom: 24px; } .link { color: inherit; text-decoration: underline; transition: color 150ms; } .link:hover { color: var(--violet-dark-100); transition: color 150ms; }