Skip to content

Commit a4cd877

Browse files
committed
Initial Commit
0 parents  commit a4cd877

Some content is hidden

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

52 files changed

+4718
-0
lines changed

.gitignore

+38
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
### OSX ###
2+
*.DS_Store
3+
.AppleDouble
4+
.LSOverride
5+
6+
# Icon must end with two \r
7+
Icon
8+
9+
10+
# Thumbnails
11+
._*
12+
13+
# Files that might appear in the root of a volume
14+
.DocumentRevisions-V100
15+
.fseventsd
16+
.Spotlight-V100
17+
.TemporaryItems
18+
.Trashes
19+
.VolumeIcon.icns
20+
.com.apple.timemachine.donotpresent
21+
22+
# Directories potentially created on remote AFP share
23+
.AppleDB
24+
.AppleDesktop
25+
Network Trash Folder
26+
Temporary Items
27+
.apdisk
28+
29+
30+
### CodeKit ###
31+
# General CodeKit files to ignore
32+
config.codekit
33+
/min
34+
35+
36+
### Sass ###
37+
.sass-cache/
38+
*.css.map

Portfolio.psd

36.5 MB
Binary file not shown.

README.md

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
# [Global: HTML5 website template](http://buckymaler.com/featured-work/global)
2+
3+
Global is a modern and sleek website template crafted for professionals in the creative industry. Global can serve as a single page portfolio or be easily modified to serve as the perfect beginning for a hip creative agency.
4+
5+
The original PSD is included and was provided by [Sergey Melnik](https://www.behance.net/SergeyMelnik)
6+
7+
This project was developed with HTML5, Sass, and JavaScript.
8+
9+
Performance basics are covered: assets are minified into single CSS and JS files, and the images are optimized.
10+
11+
[LIVE PREVIEW](http://buckymaler.com/featured-work/global)
12+
13+
## Misc:
14+
15+
* Follow Bucky: [Twitter](https://twitter.com/BuckyMaler), [GitHub](https://github.com/BuckyMaler)
16+
* Follow Sergey: [Dribbble](https://dribbble.com/sergeymelnik), [Bēhance](https://www.behance.net/SergeyMelnik)

assets/css/base/_body-element.sass

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
body
2+
background-color: $black
3+
font-size: 14px
4+
line-height: 1.6
5+
font-family: "Montserrat", sans-serif
6+
color: $white
7+
-webkit-font-smoothing: antialiased
8+
-webkit-text-size-adjust: 100%

assets/css/base/_fonts.scss

+33
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
// https://www.fontsquirrel.com/fonts/montserrat
2+
3+
@font-face {
4+
font-family: 'Montserrat';
5+
src: url('fonts/Montserrat-Black.eot');
6+
src: local(''), url('fonts/Montserrat-Black.woff') format('woff'), url('fonts/Montserrat-Black.ttf') format('truetype'), url('fonts/Montserrat-Black.svg') format('svg');
7+
font-weight: 900;
8+
font-style: normal;
9+
}
10+
11+
@font-face {
12+
font-family: 'Montserrat';
13+
src: url('fonts/Montserrat-Bold.eot');
14+
src: local(''), url('fonts/Montserrat-Bold.woff') format('woff'), url('fonts/Montserrat-Bold.ttf') format('truetype'), url('fonts/Montserrat-Bold.svg') format('svg');
15+
font-weight: 700;
16+
font-style: normal;
17+
}
18+
19+
@font-face {
20+
font-family: 'Montserrat';
21+
src: url('fonts/Montserrat-Regular.eot');
22+
src: local(''), url('fonts/Montserrat-Regular.woff') format('woff'), url('fonts/Montserrat-Regular.ttf') format('truetype'), url('fonts/Montserrat-Regular.svg') format('svg');
23+
font-weight: 400;
24+
font-style: normal;
25+
}
26+
27+
@font-face {
28+
font-family: 'Montserrat';
29+
src: url('fonts/Montserrat-Light.eot');
30+
src: local(''), url('fonts/Montserrat-Light.woff') format('woff'), url('fonts/Montserrat-Light.ttf') format('truetype'), url('fonts/Montserrat-Light.svg') format('svg');
31+
font-weight: 300;
32+
font-style: normal;
33+
}

assets/css/base/_normalize.scss

+221
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,221 @@
1+
/*! normalize.css v3.0.2 | MIT License | git.io/normalize */
2+
3+
html {
4+
font-family: sans-serif;
5+
-ms-text-size-adjust: 100%;
6+
-webkit-text-size-adjust: 100%;
7+
}
8+
9+
body {
10+
margin: 0;
11+
}
12+
13+
article,
14+
aside,
15+
details,
16+
figcaption,
17+
figure,
18+
footer,
19+
header,
20+
hgroup,
21+
main,
22+
menu,
23+
nav,
24+
section,
25+
summary {
26+
display: block;
27+
}
28+
29+
audio,
30+
canvas,
31+
progress,
32+
video {
33+
display: inline-block;
34+
vertical-align: baseline;
35+
}
36+
37+
audio:not([controls]) {
38+
display: none;
39+
height: 0;
40+
}
41+
42+
[hidden],
43+
template {
44+
display: none;
45+
}
46+
47+
a {
48+
background-color: transparent;
49+
}
50+
51+
a:active,
52+
a:hover {
53+
outline: 0;
54+
}
55+
56+
abbr[title] {
57+
border-bottom: 1px dotted;
58+
}
59+
60+
b,
61+
strong {
62+
font-weight: bold;
63+
}
64+
65+
dfn {
66+
font-style: italic;
67+
}
68+
69+
h1 {
70+
font-size: 2em;
71+
margin: 0.67em 0;
72+
}
73+
74+
mark {
75+
background: #ff0;
76+
color: #000;
77+
}
78+
79+
small {
80+
font-size: 80%;
81+
}
82+
83+
sub,
84+
sup {
85+
font-size: 75%;
86+
line-height: 0;
87+
position: relative;
88+
vertical-align: baseline;
89+
}
90+
91+
sup {
92+
top: -0.5em;
93+
}
94+
95+
sub {
96+
bottom: -0.25em;
97+
}
98+
99+
img {
100+
border: 0;
101+
}
102+
103+
svg:not(:root) {
104+
overflow: hidden;
105+
}
106+
107+
figure {
108+
margin: 1em 40px;
109+
}
110+
111+
hr {
112+
-moz-box-sizing: content-box;
113+
box-sizing: content-box;
114+
height: 0;
115+
}
116+
117+
pre {
118+
overflow: auto;
119+
}
120+
121+
code,
122+
kbd,
123+
pre,
124+
samp {
125+
font-family: monospace, monospace;
126+
font-size: 1em;
127+
}
128+
129+
button,
130+
input,
131+
optgroup,
132+
select,
133+
textarea {
134+
color: inherit;
135+
font: inherit;
136+
margin: 0;
137+
}
138+
139+
button {
140+
overflow: visible;
141+
}
142+
143+
button,
144+
select {
145+
text-transform: none;
146+
}
147+
148+
button,
149+
html input[type="button"],
150+
input[type="reset"],
151+
input[type="submit"] {
152+
-webkit-appearance: button;
153+
cursor: pointer;
154+
}
155+
156+
button[disabled],
157+
html input[disabled] {
158+
cursor: default;
159+
}
160+
161+
button::-moz-focus-inner,
162+
input::-moz-focus-inner {
163+
border: 0;
164+
padding: 0;
165+
}
166+
167+
input {
168+
line-height: normal;
169+
}
170+
171+
input[type="checkbox"],
172+
input[type="radio"] {
173+
box-sizing: border-box;
174+
padding: 0;
175+
}
176+
177+
input[type="number"]::-webkit-inner-spin-button,
178+
input[type="number"]::-webkit-outer-spin-button {
179+
height: auto;
180+
}
181+
182+
input[type="search"] {
183+
-webkit-appearance: textfield;
184+
-moz-box-sizing: content-box;
185+
-webkit-box-sizing: content-box;
186+
box-sizing: content-box;
187+
}
188+
189+
input[type="search"]::-webkit-search-cancel-button,
190+
input[type="search"]::-webkit-search-decoration {
191+
-webkit-appearance: none;
192+
}
193+
194+
fieldset {
195+
border: 1px solid #c0c0c0;
196+
margin: 0 2px;
197+
padding: 0.35em 0.625em 0.75em;
198+
}
199+
200+
legend {
201+
border: 0;
202+
padding: 0;
203+
}
204+
205+
textarea {
206+
overflow: auto;
207+
}
208+
209+
optgroup {
210+
font-weight: bold;
211+
}
212+
213+
table {
214+
border-collapse: collapse;
215+
border-spacing: 0;
216+
}
217+
218+
td,
219+
th {
220+
padding: 0;
221+
}
+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
::selection
2+
background: #FFF498
3+
4+
::-moz-selection
5+
background: #FFF498
6+
7+
img::selection
8+
background: transparent
9+
10+
img::-moz-selection
11+
background: transparent
12+
13+
body
14+
-webkit-tap-highlight-color: #FFF498

assets/css/base/_vars.sass

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
// Colors
2+
$white: #fff
3+
$black: #0c0c0c
4+
$highlight: #0f33ff
5+
$muted-gray: #282828

assets/css/fonts/Montserrat-Black.eot

42 KB
Binary file not shown.

assets/css/fonts/Montserrat-Black.svg

44.3 KB
Loading

assets/css/fonts/Montserrat-Black.ttf

41.6 KB
Binary file not shown.
22.1 KB
Binary file not shown.

assets/css/fonts/Montserrat-Bold.eot

42.6 KB
Binary file not shown.

assets/css/fonts/Montserrat-Bold.svg

44.9 KB
Loading

assets/css/fonts/Montserrat-Bold.ttf

42.3 KB
Binary file not shown.

assets/css/fonts/Montserrat-Bold.woff

23.2 KB
Binary file not shown.

assets/css/fonts/Montserrat-Light.eot

43.2 KB
Binary file not shown.

assets/css/fonts/Montserrat-Light.svg

43.7 KB
Loading

assets/css/fonts/Montserrat-Light.ttf

42.9 KB
Binary file not shown.
23 KB
Binary file not shown.
43.2 KB
Binary file not shown.
44.3 KB
Loading
42.9 KB
Binary file not shown.
23.2 KB
Binary file not shown.

assets/css/layouts/_grid.sass

+50
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,50 @@
1+
.l-viewport
2+
position: relative
3+
width: 100%
4+
height: 100vh
5+
box-shadow: 0 0 45px 5px rgba(0,0,0,.85)
6+
overflow: hidden
7+
8+
.l-wrapper
9+
position: relative
10+
width: 1440px
11+
max-width: 90%
12+
height: 100%
13+
margin: 0 auto
14+
15+
.l-side-nav
16+
position: absolute
17+
left: 0
18+
display: flex
19+
height: 100%
20+
align-items: center
21+
22+
// placed on layout class due to firefox bug
23+
&::before
24+
content: ""
25+
position: absolute
26+
top: 50%
27+
left: 0
28+
transform: translateY(-50%)
29+
width: 2px
30+
height: 70%
31+
max-height: 750px
32+
background-color: #555
33+
opacity: .35
34+
z-index: 10
35+
36+
@media (max-width: 1180px)
37+
display: none
38+
39+
.l-main-content
40+
position: relative
41+
width: 100%
42+
height: 100%
43+
margin: 0
44+
padding: 0
45+
list-style: none
46+
47+
.l-section
48+
position: absolute
49+
width: 100%
50+
height: 100%

assets/css/main.css

+1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)