https://github.com/nexusgksoftwares/company-portfolio
https://github.com/nexusgksoftwares/company-portfolio
Last synced: 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/nexusgksoftwares/company-portfolio
- Owner: NexusGKSoftwares
- License: mit
- Created: 2024-12-28T11:23:02.000Z (4 months ago)
- Default Branch: main
- Last Pushed: 2024-12-28T11:40:38.000Z (4 months ago)
- Last Synced: 2024-12-28T12:22:13.970Z (4 months ago)
- Language: HTML
- Size: 0 Bytes
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Essential Stuff
## Html import links
Google font
``` html
```
Ionicon
``` html
```
---
## Colors
``` css
--violet-blue-crayola: hsla(234, 50%, 64%, 1);
--dark-cornflower-blue_a7: hsla(214, 88%, 27%, 0.07);
--white: hsla(0, 0%, 100%, 1);
--white_a3: hsla(0, 0%, 100%, 0.03);
--white_a8: hsla(0, 0%, 100%, 0.08);
--white_a12: hsla(0, 0%, 100%, 0.12);
--white_a70: hsla(0, 0%, 100%, 0.7);
--cultured: hsla(220, 20%, 97%, 1);
--lavender-web: hsla(233, 52%, 94%, 1);
--cadet-blue-crayola: hsla(220, 12%, 70%, 1);
--cadet-blue-crayola_a20: hsla(222, 23%, 71%, 0.2);
--charcoal: hsla(218, 22%, 26%, 1);
--raisin-black: hsla(216, 14%, 14%, 1);
--light-gray: hsla(0, 0%, 79%, 1);
--blue-crayola: hsla(219, 72%, 56%, 1);
--black-coral: hsla(220, 12%, 43%, 1);
```## Typography
``` css
--ff-manrope: 'Manrope', sans-serif;--fs-1: calc(2.7rem + 1.38vw);
--fs-2: calc(2.6rem + .66vw);
--fs-3: 2.2rem;
--fs-4: 1.9rem;
--fs-5: 1.8rem;
--fs-6: 1.7rem;
--fs-7: 1.5rem;
--fs-8: 1.4rem;--fw-700: 700;
```## Spacing
``` css
--section-padding: 90px;
```## Shadow
``` css
--shadow-1: 0 0 20px hsla(216, 14%, 14%, 0.05);
--shadow-2: 0 0 0 0.05rem hsla(214, 88%, 27%, 0.08), 0 0 1.25rem hsla(216, 14%, 14%, 0.06);
--shadow-3: 0 0 1.25rem hsla(216, 14%, 14%, 0.04);
```## Border Radius
``` css
--radius-circle: 50%;
--radius-pill: 100px;
--radius-10: 10px;
--radius-8: 8px;
--radius-6: 6px;
```## Transition
``` css
--transition-1: 0.25s ease;
--transition-2: 0.5s ease;
--transition-3: 0.3s ease-in-out;
```