Skip to content

Commit 97dd678

Browse files
author
Dino Kljuco
committed
Initial commit
0 parents  commit 97dd678

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

+1339
-0
lines changed

.DS_Store

12 KB
Binary file not shown.

.gitattributes

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
# Auto detect text files and perform LF normalization
2+
* text=auto

README.md

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
# flex-dashboard
2+
# flex-dashboard

assets/.DS_Store

10 KB
Binary file not shown.

assets/css/defaults.css

Whitespace-only changes.

assets/css/layout.css

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
#app {
2+
display: flex;
3+
flex-wrap: wrap; }
4+
5+
@media screen and (max-width: 1024px) {
6+
#app {
7+
display: flow-root; }
8+
.menu {
9+
width: 0px; }
10+
.menu--submenu > ul {
11+
display: flow-root; } }

assets/css/reset.css

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
ul, menu, dir {
2+
-webkit-margin-before: 0em;
3+
-webkit-margin-after: 0em;
4+
-webkit-margin-start: 0px;
5+
-webkit-margin-end: 0px;
6+
-webkit-padding-start: 0px; }

assets/fonts/.DS_Store

6 KB
Binary file not shown.

assets/fonts/icomoon.eot

6.92 KB
Binary file not shown.

assets/fonts/icomoon.svg

+47
Loading

assets/fonts/icomoon.ttf

6.76 KB
Binary file not shown.

assets/fonts/icomoon.woff

6.83 KB
Binary file not shown.

assets/scss/app.scss

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
2+
@import "global/reset";
3+
4+
@import "global/var";
5+
@import "global/defaults";
6+
7+
@import "global/fonts";
8+
@import "global/layout";
9+
10+
@import "partial/breadcrumbs";
11+
@import "partial/helpers";
12+
13+
@import "partial/login";
14+
@import "partial/element";

assets/scss/global/_var.scss

+24
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
// color:
2+
$white: #fff;
3+
$licorice: #313646;
4+
$carmine: #EB5A46;
5+
$jordy-blue: #70ABE4;
6+
$black-rock: #2D3140;
7+
$charade: #282C39;
8+
9+
$red: $carmine;
10+
$blue: $jordy-blue;
11+
$grey: #EEF1F4;
12+
$menu-light: $black-rock;
13+
$menu-dark: $charade;
14+
15+
$trans-normal: .2s all;
16+
$trans-easy: .3s all ease-out;
17+
$trans-cubic: all 350ms cubic-bezier(0.23, 1, 0.32, 1);
18+
19+
$font: Open Sans, "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
20+
$font-icon: "icomoon";
21+
22+
$navbar-open: 340px;
23+
$navbar-closed: 0px;
24+
$navbar-width: 80px;

assets/scss/global/defaults.scss

+46
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
1+
2+
html, body {
3+
height: 100%;
4+
font-size: 16px;
5+
}
6+
7+
body {
8+
font-family: $font;
9+
color: $licorice;
10+
background-color: $grey;
11+
padding: 0;
12+
margin: 0;
13+
}
14+
15+
a {
16+
cursor: pointer;
17+
}
18+
19+
ul {
20+
list-style: none;
21+
}
22+
23+
strong {
24+
font-family: Open Sans;
25+
font-weight: 700;
26+
}
27+
28+
h1, h2, h3, h4, h5, h6 {
29+
font-family: $font;
30+
font-weight: 300;
31+
line-height: 1.1em;
32+
}
33+
34+
a {
35+
transition: $trans-normal;
36+
37+
&:hover {
38+
text-decoration: none;
39+
}
40+
41+
&:focus {
42+
text-decoration: none;
43+
}
44+
}
45+
46+

assets/scss/global/fonts.scss

+138
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,138 @@
1+
@font-face {
2+
font-family: 'icomoon';
3+
src: url('../assets/fonts/icomoon.eot?59lvle');
4+
src: url('../assets/fonts/icomoon.eot?59lvle#iefix') format('embedded-opentype'),
5+
url('../assets/fonts/icomoon.ttf?59lvle') format('truetype'),
6+
url('../assets/fonts/icomoon.woff?59lvle') format('woff'),
7+
url('../assets/fonts/icomoon.svg?59lvle#icomoon') format('svg');
8+
font-weight: normal;
9+
font-style: normal;
10+
}
11+
12+
[class^="icon-"], [class*=" icon-"] {
13+
/* use !important to prevent issues with browser extensions that change fonts */
14+
font-family: 'icomoon' !important;
15+
speak: none;
16+
font-style: normal;
17+
font-weight: normal;
18+
font-variant: normal;
19+
text-transform: none;
20+
line-height: 1;
21+
22+
/* Better Font Rendering =========== */
23+
-webkit-font-smoothing: antialiased;
24+
-moz-osx-font-smoothing: grayscale;
25+
}
26+
27+
28+
.icon-trash-can:before {
29+
content: "\e900";
30+
}
31+
.icon-tasks:before {
32+
content: "\76";
33+
}
34+
.icon-show:before {
35+
content: "\48";
36+
}
37+
.icon-flag:before {
38+
content: "\4c";
39+
}
40+
.icon-save:before {
41+
content: "\4d";
42+
}
43+
.icon-archive:before {
44+
content: "\4f";
45+
}
46+
.icon-settings:before {
47+
content: "\50";
48+
}
49+
.icon-home:before {
50+
content: "\5a";
51+
}
52+
.icon-search:before {
53+
content: "\23";
54+
}
55+
.icon-message:before {
56+
content: "\2c";
57+
}
58+
.icon-messages:before {
59+
content: "\2d";
60+
}
61+
.icon-message-write:before {
62+
content: "\2e";
63+
}
64+
.icon-image:before {
65+
content: "\5d";
66+
}
67+
.icon-images:before {
68+
content: "\5e";
69+
}
70+
.icon-link:before {
71+
content: "\e007";
72+
}
73+
.icon-note:before {
74+
content: "\e019";
75+
}
76+
.icon-write-note:before {
77+
content: "\e01a";
78+
}
79+
.icon-chart-pie:before {
80+
content: "\51";
81+
}
82+
.icon-chart-1:before {
83+
content: "\52";
84+
}
85+
.icon-line-chart:before {
86+
content: "\53";
87+
}
88+
.icon-chart-down:before {
89+
content: "\54";
90+
}
91+
.icon-chart-up:before {
92+
content: "\55";
93+
}
94+
.icon-stack:before {
95+
content: "\46";
96+
}
97+
.icon-write:before {
98+
content: "\2a";
99+
}
100+
.icon-alert:before {
101+
content: "\62";
102+
}
103+
.icon-dash:before {
104+
content: "\6d";
105+
}
106+
.icon-check:before {
107+
content: "\e006";
108+
}
109+
.icon-warning:before {
110+
content: "\e027";
111+
}
112+
.icon-menu-2:before {
113+
content: "\e031";
114+
}
115+
.icon-menu:before {
116+
content: "\e032";
117+
}
118+
.icon-full-size:before {
119+
content: "\e033";
120+
}
121+
.icon-backward:before {
122+
content: "\e040";
123+
}
124+
.icon-minus:before {
125+
content: "\e041";
126+
}
127+
.icon-plus:before {
128+
content: "\e048";
129+
}
130+
.icon-question-mark:before {
131+
content: "\e049";
132+
}
133+
.icon-x:before {
134+
content: "\e04a";
135+
}
136+
.icon-forward:before {
137+
content: "\e04c";
138+
}

0 commit comments

Comments
 (0)