Skip to content

Commit

Permalink
Revert css fix attempts
Browse files Browse the repository at this point in the history
  • Loading branch information
xzippyzachx committed Apr 18, 2024
1 parent 6e7d311 commit 21614cc
Show file tree
Hide file tree
Showing 3 changed files with 106 additions and 106 deletions.
106 changes: 106 additions & 0 deletions src/app.css
Original file line number Diff line number Diff line change
@@ -1,3 +1,109 @@
@tailwind base;
@tailwind components;
@tailwind utilities;

/* ------- Common CSS that is used in multiple components ------- */

/* Text */
.blockTopText {
font-family: 'Almarai';
font-weight: 400;
font-size: 18px;
line-height: 18px;
}
.blockHeaderTextLG {
font-family: 'Archivo Black';
font-weight: 400;
font-size: calc(24px + 4vw);
line-height: calc(24px + 4vw);
}
.blockHeaderText {
font-family: 'Almarai';
font-weight: 700;
font-size: calc(28px + 1.5vw);
line-height: calc(28px + 1.5vw);
}
.pinkText {
color: #ec25a0;
}
.blueText {
color: #36bee1;
}
.darkText {
color: #120227;
}
.yellowText {
color: #F5D33D;
}
article h1 {
color: #F5D33D;
font-family: 'Almarai';
font-weight: 700;
font-size: calc(28px + 1.5vw);
line-height: calc(28px + 1.5vw);
padding-top: 24px;
}
article h2 {
color: #ec25a0;
font-family: 'Almarai';
font-weight: 700;
font-size: 24px;
line-height: 24px;
padding-top: 10px;
}
article h3 {
color: #36bee1;
font-family: 'Almarai';
font-weight: 700;
font-size: 16px;
line-height: 16px;
padding-top: 10px;
}

article p {
color: #FFFFFF;
font-family: 'Almarai';
font-weight: 400;
font-size: 20px;
line-height: 20px;
padding-top: 20px;
}
p {
color: #FFFFFF;
font-family: 'Almarai';
font-weight: 400;
font-size: 24px;
line-height: 24px;
}

/* Background colors */
.pink {
border-color: #ec25a0;
background-color: #ec25a0;
}
.blue {
border-color: #36bee1;
background-color: #36bee1;
}
.dark {
border-color: #120227;
background-color: #120227;
}
.yellow {
border-color: #F5D33D;
background-color: #F5D33D;
}

/* Lines */
.dot {
height: 8px;
width: 8px;
border-radius: 50%;
}
.diamond {
height: 8px;
width: 8px;
clip-path: polygon(50% 0, 100% 50%, 50% 100%, 0 50%);
}

/* Other */
1 change: 0 additions & 1 deletion src/routes/header.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,6 @@
</script>

<svelte:head>
<link rel="stylesheet" href="global.css">
<link
href="https://fonts.googleapis.com/css2?family=Archivo+Black&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap"
rel="stylesheet"
Expand Down
105 changes: 0 additions & 105 deletions static/global.css

This file was deleted.

0 comments on commit 21614cc

Please sign in to comment.