Skip to content

Commit b442ad0

Browse files
committed
chore: init
0 parents  commit b442ad0

File tree

1,662 files changed

+130753
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

1,662 files changed

+130753
-0
lines changed

css/styles.css

Lines changed: 197 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,197 @@
1+
/*
2+
===============
3+
Fonts
4+
===============
5+
*/
6+
@import url("https://fonts.googleapis.com/css?family=Lato:400,700&display=swap");
7+
8+
/*
9+
===============
10+
Variables
11+
===============
12+
*/
13+
14+
:root {
15+
/* dark shades of primary color*/
16+
--clr-primary-1: hsl(184, 91%, 17%);
17+
--clr-primary-2: hsl(185, 84%, 25%);
18+
--clr-primary-3: hsl(185, 81%, 29%);
19+
--clr-primary-4: hsl(184, 77%, 34%);
20+
/* primary/main color */
21+
--clr-primary-5: hsl(185, 62%, 45%);
22+
/* lighter shades of primary color */
23+
--clr-primary-6: hsl(185, 57%, 50%);
24+
--clr-primary-7: hsl(184, 65%, 59%);
25+
--clr-primary-8: hsl(184, 80%, 74%);
26+
--clr-primary-9: hsl(185, 94%, 87%);
27+
--clr-primary-10: hsl(186, 100%, 94%);
28+
/* darkest grey - used for headings */
29+
--clr-grey-1: hsl(209, 61%, 16%);
30+
--clr-grey-2: hsl(211, 39%, 23%);
31+
--clr-grey-3: hsl(209, 34%, 30%);
32+
--clr-grey-4: hsl(209, 28%, 39%);
33+
/* grey used for paragraphs */
34+
--clr-grey-5: hsl(210, 22%, 49%);
35+
--clr-grey-6: hsl(209, 23%, 60%);
36+
--clr-grey-7: hsl(211, 27%, 70%);
37+
--clr-grey-8: hsl(210, 31%, 80%);
38+
--clr-grey-9: hsl(212, 33%, 89%);
39+
--clr-grey-10: hsl(210, 36%, 96%);
40+
--clr-white: #fff;
41+
--ff-primary: "Lato", sans-serif;
42+
--transition: all 0.3s linear;
43+
--spacing: 0.25rem;
44+
--radius: 0.5rem;
45+
--light-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
46+
--dark-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
47+
}
48+
/*
49+
===============
50+
Global Styles
51+
===============
52+
*/
53+
54+
* {
55+
margin: 0;
56+
padding: 0;
57+
box-sizing: border-box;
58+
}
59+
body {
60+
font-family: var(--ff-primary);
61+
background: var(--clr-white);
62+
color: var(--clr-grey-1);
63+
line-height: 1.5;
64+
font-size: 0.875rem;
65+
}
66+
ul {
67+
list-style-type: none;
68+
}
69+
a {
70+
text-decoration: none;
71+
}
72+
img {
73+
width: 100%;
74+
display: block;
75+
}
76+
/* img:not(.nav-logo) {
77+
width: 100%;
78+
display: block;
79+
} */
80+
81+
h1,
82+
h2,
83+
h3,
84+
h4 {
85+
letter-spacing: var(--spacing);
86+
text-transform: capitalize;
87+
line-height: 1.25;
88+
margin-bottom: 0.75rem;
89+
}
90+
h1 {
91+
font-size: 3rem;
92+
}
93+
h2 {
94+
font-size: 2rem;
95+
}
96+
h3 {
97+
font-size: 1.25rem;
98+
}
99+
h4 {
100+
font-size: 0.875rem;
101+
}
102+
p {
103+
margin-bottom: 1.25rem;
104+
color: var(--clr-grey-5);
105+
}
106+
@media screen and (min-width: 800px) {
107+
h1 {
108+
font-size: 4rem;
109+
}
110+
h2 {
111+
font-size: 2.5rem;
112+
}
113+
h3 {
114+
font-size: 1.75rem;
115+
}
116+
h4 {
117+
font-size: 1rem;
118+
}
119+
body {
120+
font-size: 1rem;
121+
}
122+
h1,
123+
h2,
124+
h3,
125+
h4 {
126+
line-height: 1;
127+
}
128+
}
129+
/* global classes */
130+
131+
.btn {
132+
text-transform: uppercase;
133+
background: var(--clr-primary-5);
134+
color: var(--clr-white);
135+
padding: 0.375rem 0.75rem;
136+
letter-spacing: var(--spacing);
137+
display: inline-block;
138+
/* font-weight: 700; */
139+
transition: var(--transition);
140+
font-size: 0.875rem;
141+
border: 2px solid transparent;
142+
cursor: pointer;
143+
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
144+
}
145+
.btn:hover {
146+
color: var(--clr-primary-1);
147+
background: var(--clr-primary-8);
148+
}
149+
150+
/*
151+
===============
152+
Navbar
153+
===============
154+
*/
155+
/*
156+
===============
157+
Hero
158+
===============
159+
*/
160+
/*
161+
===============
162+
About
163+
===============
164+
*/
165+
/* section add to globals */
166+
/* title add to globals */
167+
/* section center add to globals */
168+
169+
/*
170+
===============
171+
Services
172+
===============
173+
*/
174+
175+
/*
176+
===============
177+
Featured Tours
178+
===============
179+
*/
180+
181+
/*
182+
===============
183+
Contact
184+
===============
185+
*/
186+
187+
/*
188+
===============
189+
Gallery
190+
===============
191+
*/
192+
193+
/*
194+
===============
195+
Footer
196+
===============
197+
*/
Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
Font Awesome Free License
2+
-------------------------
3+
4+
Font Awesome Free is free, open source, and GPL friendly. You can use it for
5+
commercial projects, open source projects, or really almost whatever you want.
6+
Full Font Awesome Free license: https://fontawesome.com/license/free.
7+
8+
# Icons: CC BY 4.0 License (https://creativecommons.org/licenses/by/4.0/)
9+
In the Font Awesome Free download, the CC BY 4.0 license applies to all icons
10+
packaged as SVG and JS file types.
11+
12+
# Fonts: SIL OFL 1.1 License (https://scripts.sil.org/OFL)
13+
In the Font Awesome Free download, the SIL OFL license applies to all icons
14+
packaged as web and desktop font files.
15+
16+
# Code: MIT License (https://opensource.org/licenses/MIT)
17+
In the Font Awesome Free download, the MIT license applies to all non-font and
18+
non-icon files.
19+
20+
# Attribution
21+
Attribution is required by MIT, SIL OFL, and CC BY licenses. Downloaded Font
22+
Awesome Free files already contain embedded comments with sufficient
23+
attribution, so you shouldn't need to do anything additional when using these
24+
files normally.
25+
26+
We've kept attribution comments terse, so we ask that you do not actively work
27+
to remove them from files, especially code. They're a great way for folks to
28+
learn about Font Awesome.
29+
30+
# Brand Icons
31+
All brand icons are trademarks of their respective owners. The use of these
32+
trademarks does not indicate endorsement of the trademark holder by Font
33+
Awesome, nor vice versa. **Please do not use brand logos for any purpose except
34+
to represent the company, product, or service to which they refer.**

0 commit comments

Comments
 (0)