-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #3 from CSULB-WiC/Fooj
Navigation bar
- Loading branch information
Showing
29 changed files
with
370 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,205 @@ | ||
/*=============== GOOGLE FONTS ===============*/ | ||
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap"); | ||
|
||
/*=============== VARIABLES CSS ===============*/ | ||
:root { | ||
--header-height: 3.5rem; | ||
|
||
/*========== Colors ==========*/ | ||
/*Color mode HSL(hue, saturation, lightness)*/ | ||
--first-color: hsl(355, 70%, 54%); | ||
--first-color-alt: hsl(355, 66%, 50%); | ||
--title-color: hsl(355, 4%, 15%); | ||
--text-color: hsl(355, 4%, 35%); | ||
--text-color-light: hsl(355, 4%, 55%); | ||
--body-color: #fff; | ||
--container-color: #fff; | ||
|
||
/*========== Font and typography ==========*/ | ||
/*.5rem = 8px | 1rem = 16px ...*/ | ||
--body-font: 'Poppins', sans-serif; | ||
|
||
--biggest-font-size: 1.5rem; | ||
--h1-font-size: 1.5rem; | ||
--h2-font-size: 1.25rem; | ||
--h3-font-size: 1rem; | ||
--normal-font-size: .938rem; | ||
--small-font-size: .813rem; | ||
--smaller-font-size: .75rem; | ||
|
||
/*========== Font weight ==========*/ | ||
--font-medium: 500; | ||
--font-semi-bold: 600; | ||
|
||
/*========== Margenes Bottom ==========*/ | ||
/*.5rem = 8px | 1rem = 16px ...*/ | ||
--mb-0-25: .25rem; | ||
--mb-0-5: .5rem; | ||
--mb-1: 1rem; | ||
--mb-1-5: 1.5rem; | ||
--mb-2: 2rem; | ||
--mb-2-5: 2.5rem; | ||
|
||
/*========== z index ==========*/ | ||
--z-tooltip: 10; | ||
--z-fixed: 100; | ||
} | ||
|
||
/* Responsive typography */ | ||
@media screen and (min-width: 968px) { | ||
:root { | ||
--biggest-font-size: 2.5rem; | ||
--h1-font-size: 2.25rem; | ||
--h2-font-size: 1.5rem; | ||
--h3-font-size: 1.25rem; | ||
--normal-font-size: 1rem; | ||
--small-font-size: .875rem; | ||
--smaller-font-size: .813rem; | ||
} | ||
} | ||
|
||
/*=============== BASE ===============*/ | ||
* { | ||
box-sizing: border-box; | ||
padding: 0; | ||
margin: 0; | ||
} | ||
|
||
html { | ||
scroll-behavior: smooth; | ||
} | ||
|
||
body, | ||
button, | ||
input { | ||
font-family: var(--body-font); | ||
font-size: var(--normal-font-size); | ||
} | ||
|
||
body { | ||
margin: var(--header-height) 0 0 0; | ||
background-color: var(--body-color); | ||
color: var(--text-color); | ||
transition: .4s; /*For animation dark mode*/ | ||
} | ||
|
||
h1, h2, h3, h4 { | ||
color: var(--title-color); | ||
font-weight: var(--font-semi-bold); | ||
} | ||
|
||
ul { | ||
list-style: none; | ||
} | ||
|
||
a { | ||
text-decoration: none; | ||
} | ||
|
||
img { | ||
max-width: 100%; | ||
height: auto; | ||
} | ||
|
||
button { | ||
cursor: pointer; | ||
border: none; | ||
outline: none; | ||
} | ||
|
||
/*=============== THEME ===============*/ | ||
|
||
|
||
/*========== Variables Dark theme ==========*/ | ||
|
||
|
||
/*========== | ||
Color changes in some parts of | ||
the website, in dark theme | ||
==========*/ | ||
|
||
|
||
/*=============== REUSABLE CSS CLASSES ===============*/ | ||
.container { | ||
max-width: 968px; | ||
margin-left: var(--mb-1-5); | ||
margin-right: var(--mb-1-5); | ||
} | ||
|
||
.grid { | ||
display: grid; | ||
} | ||
|
||
.main { | ||
overflow: hidden; | ||
} | ||
|
||
.section { | ||
padding: 4.5rem 0 1rem; | ||
} | ||
|
||
.section__title { | ||
font-size: var(--h2-font-size); | ||
margin-bottom: var(--mb-2-5); | ||
text-align: center; | ||
} | ||
|
||
/*=============== HEADER ===============*/ | ||
|
||
|
||
/*=============== NAV ===============*/ | ||
|
||
|
||
/* Show menu */ | ||
|
||
|
||
/* Change background header */ | ||
|
||
|
||
/* Active link */ | ||
|
||
|
||
/*=============== HOME ===============*/ | ||
|
||
|
||
/*=============== BUTTONS ===============*/ | ||
|
||
|
||
/*=============== GIVING ===============*/ | ||
|
||
|
||
/*=============== CELEBRATE ===============*/ | ||
|
||
|
||
/*=============== GIFT ===============*/ | ||
|
||
|
||
/*=============== NEW ===============*/ | ||
|
||
|
||
/*Class Swiper*/ | ||
|
||
|
||
/*=============== MESSAGE ===============*/ | ||
|
||
|
||
/*=============== FOOTER ===============*/ | ||
|
||
|
||
/*=============== SCROLL UP ===============*/ | ||
|
||
|
||
/* Show Scroll Up*/ | ||
|
||
|
||
/*=============== SCROLL BAR ===============*/ | ||
|
||
|
||
/*=============== BREAKPOINTS ===============*/ | ||
/* For small devices */ | ||
|
||
|
||
/* For medium devices */ | ||
|
||
|
||
/* For large devices */ |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
/*=============== SHOW MENU ===============*/ | ||
|
||
|
||
/*=============== REMOVE MENU MOBILE ===============*/ | ||
|
||
|
||
/*=============== CHANGE BACKGROUND HEADER ===============*/ | ||
|
||
|
||
/*=============== NEW SWIPER ===============*/ | ||
|
||
|
||
/*=============== SCROLL SECTIONS ACTIVE LINK ===============*/ | ||
|
||
|
||
/*=============== SHOW SCROLL UP ===============*/ | ||
|
||
|
||
/*=============== DARK LIGHT THEME ===============*/ | ||
|
||
|
||
/*=============== SCROLL REVEAL ANIMATION ===============*/ |
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Oops, something went wrong.