Skip to content

Commit 42ef67b

Browse files
authored
Merge pull request #36 from Svetloslav15/feature/version-2
Feature/version 2
2 parents a4f3dee + 3f248e2 commit 42ef67b

28 files changed

+58266
-22719
lines changed

.eslintrc

Lines changed: 0 additions & 33 deletions
This file was deleted.

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,4 +102,4 @@ typings/
102102
# TernJS port file
103103
.tern-port
104104

105-
.idea
105+
.idea/

.prettierrc

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +0,0 @@
1-
{
2-
"singleQuote": true,
3-
"jsxSingleQuote": true,
4-
"semi": false,
5-
"tabWidth": 2,
6-
"bracketSpacing": true,
7-
"jsxBracketSameLine": false,
8-
"arrowParens": "always",
9-
"trailingComma": "none"
10-
}

dist/app.css

Lines changed: 176 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,176 @@
1+
@import url('https://fonts.googleapis.com/css2?family=Montserrat&display=swap');
2+
3+
* {
4+
font-family: 'Montserrat', sans-serif;
5+
}
6+
7+
.bg-red {
8+
background-color: crimson;
9+
}
10+
11+
.bg-white {
12+
background-color: white;
13+
}
14+
15+
.container-wrapper {
16+
width: 250px;
17+
height: 100vh;
18+
background-color: deepskyblue;
19+
color: white;
20+
position: fixed;
21+
top: 0;
22+
text-align: center;
23+
transition: all .3s ease-in-out;
24+
}
25+
26+
.item {
27+
width: 95%;
28+
padding: 14px 0;
29+
padding-left: 12px;
30+
cursor: pointer;
31+
text-align: left;
32+
}
33+
34+
.item:hover {
35+
background-color: #0377DA;
36+
transition: all .3s ease-in-out;
37+
}
38+
39+
.icon {
40+
padding-right: 10px;
41+
display: inline-block;
42+
width: 20%;
43+
font-size: 15px;
44+
}
45+
46+
.bg-blue {
47+
background-color: #3960D0;
48+
color: white;
49+
}
50+
51+
.bg-blue .item:hover {
52+
background-color: #0541AA;
53+
}
54+
55+
.blue-hover:hover {
56+
background-color: #609BEB;
57+
color: white;
58+
}
59+
60+
.bg-light {
61+
background-color: #FFFEFF;
62+
color: black;
63+
}
64+
65+
.light-hover:hover {
66+
background-color: #F6F6F6;
67+
}
68+
69+
.bg-light .item:hover {
70+
background-color: #1c1e2a;
71+
color: white;
72+
}
73+
74+
.bg-black {
75+
background-color: #1c1e2a;
76+
color: white;
77+
}
78+
79+
.bg-black .item:hover {
80+
background-color: white;
81+
color: #1c1e2a;
82+
}
83+
84+
.black-hover:hover {
85+
background-color: #2C2F3E;
86+
color: white;
87+
}
88+
89+
.dropdown-item {
90+
text-align: left;
91+
cursor: pointer;
92+
}
93+
94+
.mx-1 {
95+
margin: 0 1em;
96+
}
97+
98+
.d-none {
99+
display: none;
100+
}
101+
102+
.d-block {
103+
display: block;
104+
position: relative;
105+
}
106+
107+
.logo-image {
108+
width: 100px;
109+
margin-top: 1em;
110+
}
111+
112+
.toggler {
113+
position: absolute;
114+
right: 15px;
115+
top: 15px;
116+
font-size: 22px;
117+
cursor: pointer;
118+
}
119+
120+
.collapsed {
121+
width: 85px;
122+
}
123+
124+
input {
125+
padding: 12px 20px;
126+
margin: 15px 0;
127+
box-sizing: border-box;
128+
}
129+
130+
.pos-left {
131+
left: 0;
132+
}
133+
134+
.pos-right {
135+
right: 0;
136+
}
137+
138+
.bg-peach {
139+
background-color: #FD7E65;
140+
color: white;
141+
}
142+
143+
.bg-peach-hover:hover {
144+
background-color: #FD9768;
145+
}
146+
147+
.bg-peach .item:hover {
148+
background-color: white;
149+
color: #FD7E65;
150+
}
151+
152+
.bg-purple {
153+
background-color: #A771E4;
154+
color: white;
155+
}
156+
157+
.bg-purple .item:hover {
158+
background-color: #7F00BE;
159+
}
160+
161+
.bg-purple-hover:hover {
162+
background-color: #E26FCF;
163+
}
164+
165+
.bg-aqua {
166+
background-color: #1DA4F4;
167+
color: white;
168+
}
169+
170+
.bg-aqua-hover:hover {
171+
background-color: #16BCDE;
172+
}
173+
174+
.float-right {
175+
float: right;
176+
}

0 commit comments

Comments
 (0)