Skip to content

Commit

Permalink
Landing page update
Browse files Browse the repository at this point in the history
  • Loading branch information
alohe committed Jul 4, 2024
1 parent 92f2e08 commit dc3ade6
Show file tree
Hide file tree
Showing 8 changed files with 3,071 additions and 68 deletions.
76 changes: 56 additions & 20 deletions assets/css/style.css
Original file line number Diff line number Diff line change
@@ -1,13 +1,17 @@
@tailwind base;
@tailwind components;
@tailwind utilities;



/* import local font from fonts file */
@font-face {
font-family: "Grifter Bold";
src: url("fonts/grifterbold.otf");
}

body {
background-color: #f5f5f5;
font-family: "Open Sans", sans-serif;
font-size: 14px;
font-family: "inter", sans-serif;
color: #333;
line-height: 1.5;
margin: 0;
Expand All @@ -25,21 +29,39 @@ textarea:focus {
outline: none;
}

svg {
width: 17px;
.header__text {
font-family: "Grifter Bold";
letter-spacing: 1px;
}

a {
color: #1c79f2;
text-decoration: none;
/* clip text to */
.gazer {
position: relative;
}

.header__text {
font-family: "Grifter Bold";
font-size: 2rem;
color: rgb(0, 0, 0);
letter-spacing: 1px;
.gazer__name {
position: absolute;
bottom: 100%;
left: 50%;
transform: translateX(-50%);
background-color: #000000;
color: white;
border-radius: 10px;
padding: 5px 10px;
box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.163);
z-index: 100;
display: none;
white-space: nowrap;
}

.gazer:hover .gazer__name {
display: block;
}

.gazer__img {
width: 30px !important;
height: 30px !important;
border-radius: 10px;
object-fit: cover;
}

.images {
Expand Down Expand Up @@ -90,7 +112,7 @@ a {
display: flex;
flex-wrap: wrap;
justify-content: space-between;
gap: 10px;
gap: 5px;
padding: 5px;
opacity: 0;
transition: 0.5s;
Expand All @@ -103,10 +125,10 @@ a {

.image__control__input {
width: 100%;
padding: 5px;
padding: 5px 10px;
border: 1px solid #f5f5f5;
border-radius: 5px;
font-size: 14px;
font-size: 12px;
color: #333;
line-height: 1.5;
margin: 0;
Expand All @@ -123,6 +145,10 @@ a {
transform: translateY(0px);
}

.images__image:hover .image__control__buttons {
opacity: 1;
}

.image__control__buttons .image__control__button {
border: 1px solid #f5f5f5;
width: 30px;
Expand All @@ -131,16 +157,16 @@ a {
border-radius: 5px;
background-color: rgb(255, 255, 255);
color: rgb(0, 0, 0);

@apply grid place-content-center;
}

.image__control__buttons .image__control__button:hover {
background-color: #ffffff;
color: #0075fd;
}

.images__image:hover .image__control__buttons {
opacity: 1;
}


/* pop message */
.copied__message {
Expand Down Expand Up @@ -327,3 +353,13 @@ a {
color: rgb(255, 255, 255);
text-decoration: none;
}


.fig-button {
background-image: radial-gradient(circle at left, #f34e1e 0%, #fb735e 25%, #a259ff 55%, #19bcfc 65%, #09ce82 75%, #f34e1e 100%);
}

.feather {
width: 1em;
height: 1em;
}
Loading

0 comments on commit dc3ade6

Please sign in to comment.