Skip to content

Commit

Permalink
Add Foobar.ai to archive
Browse files Browse the repository at this point in the history
  • Loading branch information
4yman-0 committed Sep 16, 2024
1 parent 902925a commit 0be49a1
Show file tree
Hide file tree
Showing 7 changed files with 594 additions and 0 deletions.
38 changes: 38 additions & 0 deletions archive/foobar.ai/css/main.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
/* VARIABLES */

:root {
--font: Tahoma, Arial, sans-serif;
--text: #DDF;
--text-grayed: #99B;
--bg: #050505;
--bg-2: #111;
--bg-3: #222;
--primary: #45F;
--secondary: #8ea;
}

/* CSS RESET */

* {
margin: 0;
padding: 0;
box-sizing: border-box;
}


ol, ul {
display: block;
list-style: none;
}

h1 {
font-size: 2.5rem;
}

h2 {
font-size: 2rem;
}

h3 {
font-size: 1.5rem;
}
93 changes: 93 additions & 0 deletions archive/foobar.ai/css/styles.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,93 @@
html {
scroll-behavior: smooth;
}

body {
font-family: var(--font);
background: var(--bg);
color: var(--text);
}

a {
text-decoration: none;
color: var(--primary);
}

a:hover, a:focus, a:active {
text-decoration: underline;
}

a:active {
color: var(--secondary);
}

.button {
display: block;
padding: .5rem;
background: var(--bg-2);
border: 1px solid var(--primary);
border-radius: 4px;
font-size: 1.4rem;
cursor: pointer;
}

.button:hover,
.button:focus,
.button:active {
text-decoration: none;
color: var(--secondary);
border-color: var(--secondary);
}

.button:active {
text-decoration: underline;
}

.color {
color: var(--secondary);
}

.disabled {
color: var(--text-grayed);
user-select: none;
cursor: not-allowed;
}

.footer {
padding: 5vh 5%;
background: #000;
color: #FFF;
}

.header {
position: sticky;
top: 0;
display: flex;
justify-content: space-between;
align-items: center;
border-bottom: 1px solid var(--bg-3);
background: rgba(20, 20, 20, 0.9);
}

.horiz-scroll {
padding-bottom: 1rem;
overflow-x: scroll;
display: flex;
flex-wrap: nowrap;
}

input {
padding: .2rem;
appearance: none;
background-color: var(--bg-2);
border: 1px solid var(--bg-3);
border-radius: 4px;
}

input:focus {
outline: 2px solid var(--primary);
}

section {
padding: 1rem;
}
186 changes: 186 additions & 0 deletions archive/foobar.ai/index.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,186 @@
.header {
padding: 0 1.5rem;
}

.header__links {
display: flex;
gap: .8rem;
}

.hero {
min-height: 100vh;
padding-top: 30vh;
background: #999;
}

.hero__container {
display: inline-block;
padding: 1rem;
background: rgba(0, 0, 10, .6);
border-radius: 1rem;
}

.hero__title {
font-size: 2rem;
}

.hero__txt {
margin: 1rem 0;
}

.hero__btn {
width: fit-content;
margin-left: auto;
text-align: center;
}

.why-foobar {
padding-top: 20vh;
}

.cards {
margin-top: 1rem;
}

.card {
display: inline-block;
flex: 0 0 auto;
width: 40%;
min-width: 300px;
height: 10rem;
padding: 2rem;
margin: 0 .2rem;
background: var(--bg-3);
border-radius: .5rem;
}

.card__title {
margin-bottom: 1rem;
font-size: 2rem;
}

.card__txt {
color: var(--text-grayed);
}

.solutions {
padding-top: 20vh;
}

.solutions__title {
font-size: 4rem;
text-align: center;
margin-bottom: 4rem;
}

.solutions__grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
margin-top: 1rem;
}

.solution {
margin: .5rem;
padding: .5rem;
background: var(--bg-2);
border: 2px solid var(--bg-3);
border-radius: 4px;
}

.solution--pro {
border-color: var(--secondary);
}

.solution__name {
margin: .5rem 0 1rem 0;
text-align: center;
font-size: 1.8rem;
}

.solution__name--pro {
color: var(--secondary);
}

.features {
line-height: 1.5;
margin: 0 0 3% 3%;
font-size: 1.5rem;
}

.feature {
color: var(--text-grayed);
}

.feature--yes {
color: var(--secondary);
}

.solution__btn {
width: fit-content;
margin: auto;
text-align: center;
}

.solution__btn--free:hover {
color: #B00;
border-color: #B00;
}

.solution__btn--pro {
color: var(--secondary);
}

.integrations {
padding-top: 15vh;
background: var(--bg-2);
}

.integrations__title {
text-align: center;
margin-bottom: 10vh;
}

.integrations__list {
margin-bottom: 8vh;
display: flex;
justify-content: space-evenly;
flex-wrap: wrap;
gap: 3vh;
}

.integration {
font-size: 1.5rem;
text-align: center;
}

.integrations__btn {
width: fit-content;
margin: auto;
font-size: 2rem;
text-align: center;
}

@media only screen and (max-width: 515px) {
.logo {
font-size: 2rem;
}

.integrations__list {
padding: 2rem 0;
background: var(--bg);
border-radius: 8px;
}

.integration {
width: 100%;
}
}

@media only screen and (max-width: 490px) {
.header__links {
padding: .1rem 0;
display: grid;
grid-template-columns: 1fr 1fr;
gap: .3rem;
}
}
Loading

0 comments on commit 0be49a1

Please sign in to comment.