Skip to content

Commit 897fbc4

Browse files
authored
Add files via upload
1 parent a71d88c commit 897fbc4

27 files changed

+5240
-14
lines changed

README.md

Lines changed: 11 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,11 @@
1-
# h1 Heading 8-)
2-
## h2 Heading
3-
### h3 Heading
4-
#### h4 Heading
5-
##### h5 Heading
6-
###### h6 Heading
7-
8-
Alternatively, for H1 and H2, an underline-ish style:
9-
10-
Alt-H1
11-
======
12-
13-
Alt-H2
14-
------
1+
# Manap
2+
Responsive HTML,CSS and Bootstrap Portfolio
3+
4+
5+
# Features
6+
- Fully Responsive
7+
- Mobile Navigations
8+
- Animated elements on scroll
9+
- Smooth scrolling in each section.
10+
- Sticky Navigation on scrolling
11+
- and more ..

assets/css/aos.css

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

assets/css/bootstrap.min.css

Lines changed: 7 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

assets/css/line-awesome.min.css

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

assets/css/style.css

Lines changed: 201 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,201 @@
1+
@import url('https://fonts.googleapis.com/css2?family=Bai+Jamjuree:wght@400;500;600;700&display=swap');
2+
3+
:root {
4+
--color-body: #b6cbce;
5+
--color-heading: #eef3db;
6+
--color-base: #033f47;
7+
--color-base2: #022a30;
8+
--color-brand: #e0f780;
9+
--color-brand2: #deff58;
10+
--sidbar-width: 240px;
11+
--font-base: "Bai Jamjuree";
12+
}
13+
14+
body {
15+
background-color: var(--color-base2);
16+
color: var(--color-body);
17+
font-family: var(--font-base), sans-serif;
18+
}
19+
20+
h1,h2,h3,h4,h5,h6 {
21+
color: var(--color-heading);
22+
font-weight: 700;
23+
}
24+
25+
a {
26+
text-decoration: none;
27+
color: var(--color-body);
28+
transition: all 0.4s ease;
29+
}
30+
31+
a:hover {
32+
color: var(--color-brand);
33+
}
34+
35+
img {
36+
width: 100%;
37+
}
38+
39+
.text-brand {
40+
color: var(--color-brand);
41+
}
42+
43+
.bg-base {
44+
background-color: var(--color-base);
45+
}
46+
47+
.full-height {
48+
min-height: 100vh;
49+
height: 100%;
50+
display: flex;
51+
flex-direction: column;
52+
justify-content: center;
53+
padding-top: 80px;
54+
padding-bottom: 80px;
55+
border-bottom: 2px solid rgba(255,255,255, 0.1);
56+
}
57+
58+
.shadow-effect {
59+
transition: all 0.5s;
60+
}
61+
62+
.shadow-effect:hover {
63+
box-shadow: -6px 6px 0 0 var(--color-brand);
64+
}
65+
66+
.iconbox {
67+
width: 60px;
68+
height: 60px;
69+
display: flex;
70+
align-items: center;
71+
justify-content: center;
72+
font-size: 32px;
73+
background-color: var(--color-brand);
74+
color: var(--color-base);
75+
}
76+
77+
/* NAVBAR */
78+
.navbar {
79+
background-color: var(--color-base);
80+
}
81+
82+
.navbar .nav-link {
83+
font-weight: 700;
84+
text-transform: uppercase;
85+
color: #fff;
86+
}
87+
88+
.navbar .nav-link:hover {
89+
color: var(--color-brand);
90+
}
91+
92+
.navbar .nav-link.active {
93+
color: var(--color-brand);
94+
}
95+
96+
@media (min-width: 992px) {
97+
.navbar {
98+
min-height: 100vh;
99+
width: var(--sidbar-width);
100+
background: linear-gradient(rgba(3, 63, 71, 0.8), rgba(3, 63, 71, 0.8)), url(../images/sidebar-img.jpg);
101+
background-size: cover;
102+
background-position: center;
103+
}
104+
105+
.navbar-brand img {
106+
border: 8px solid var(--color-brand);
107+
}
108+
109+
/* CONTENT WRAPPER */
110+
#content-wrapper {
111+
padding-left: var(--sidbar-width);
112+
}
113+
}
114+
115+
/* BTN */
116+
.btn {
117+
padding: 12px 28px;
118+
font-weight: 700;
119+
}
120+
121+
.btn-brand {
122+
background-color: var(--color-brand);
123+
border-color: var(--color-brand);
124+
color: var(--color-base);
125+
}
126+
127+
.btn-brand:hover,
128+
.btn-brand:focus {
129+
background-color: var(--color-brand2);
130+
color: var(--color-base);
131+
border-color: var(--color-brand2);
132+
}
133+
134+
.link-custom {
135+
font-weight: 700;
136+
position: relative;
137+
}
138+
139+
.link-custom::after {
140+
content: "";
141+
width: 0%;
142+
height: 2px;
143+
background-color: var(--color-brand);
144+
position: absolute;
145+
left: 0;
146+
top: 110%;
147+
transition: all 0.4s;
148+
}
149+
150+
.link-custom:hover::after {
151+
width: 100%;
152+
}
153+
154+
/* CARD */
155+
.card-custom .card-custom-image {
156+
overflow: hidden;
157+
}
158+
159+
.card-custom .card-custom-image img {
160+
transition: all 0.4s ease;
161+
}
162+
163+
.card-custom:hover .card-custom-image img {
164+
transform: scale(1.1);
165+
}
166+
167+
/* CONTACT */
168+
#contact .form-control {
169+
background-color: var(--color-base);
170+
border-color: var(--color-base);
171+
color: var(--color-body);
172+
}
173+
174+
#contact .form-control:focus {
175+
border-color: var(--color-brand);
176+
box-shadow: none;
177+
}
178+
179+
#contact .form-control::placeholder {
180+
color: var(--color-body);
181+
}
182+
183+
#contact input.form-control {
184+
height: 44px;
185+
}
186+
187+
/* SOCIAL ICONS */
188+
.social-icons {
189+
190+
}
191+
192+
.social-icons a {
193+
width: 40px;
194+
height: 40px;
195+
display: inline-flex;
196+
align-items: center;
197+
justify-content: center;
198+
background-color: var(--color-base);
199+
border-radius: 100px;
200+
font-size: 24px;
201+
}

assets/fonts/la-brands-400.eot

153 KB
Binary file not shown.

assets/fonts/la-brands-400.svg

Lines changed: 1313 additions & 0 deletions
Loading

assets/fonts/la-brands-400.ttf

152 KB
Binary file not shown.

assets/fonts/la-brands-400.woff

96.4 KB
Binary file not shown.

assets/fonts/la-brands-400.woff2

82.8 KB
Binary file not shown.

assets/fonts/la-regular-400.eot

33.1 KB
Binary file not shown.

assets/fonts/la-regular-400.svg

Lines changed: 467 additions & 0 deletions
Loading

assets/fonts/la-regular-400.ttf

32.9 KB
Binary file not shown.

assets/fonts/la-regular-400.woff

15.1 KB
Binary file not shown.

assets/fonts/la-regular-400.woff2

12.6 KB
Binary file not shown.

assets/fonts/la-solid-900.eot

221 KB
Binary file not shown.

assets/fonts/la-solid-900.svg

Lines changed: 2894 additions & 0 deletions
Loading

assets/fonts/la-solid-900.ttf

221 KB
Binary file not shown.

assets/fonts/la-solid-900.woff

122 KB
Binary file not shown.

assets/fonts/la-solid-900.woff2

94.5 KB
Binary file not shown.

assets/images/Profile.webp

151 KB
Binary file not shown.

assets/images/favicon.png

15 KB
Loading

assets/images/sidebar-img.jpg

163 KB
Loading

assets/js/aos.js

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

assets/js/bootstrap.bundle.min.js

Lines changed: 7 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

assets/js/main.js

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
AOS.init();
2+
// You can also pass an optional settings object
3+
// below listed default settings
4+
AOS.init({
5+
6+
// Settings that can be overridden on per-element basis, by `data-aos-*` attributes:
7+
offset: 120, // offset (in px) from the original trigger point
8+
delay: 0, // values from 0 to 3000, with step 50ms
9+
duration: 700, // values from 0 to 3000, with step 50ms
10+
easing: 'ease', // default easing for AOS animations
11+
once: false, // whether animation should happen only once - while scrolling down
12+
mirror: false, // whether elements should animate out while scrolling past them
13+
anchorPlacement: 'top-bottom', // defines which position of the element regarding to window should trigger the animation
14+
15+
});

0 commit comments

Comments
 (0)