Skip to content

Commit 48797c8

Browse files
author
radoslavS
committed
First push
0 parents  commit 48797c8

32 files changed

+31184
-0
lines changed

.idea/.name

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

.idea/academy angular.iml

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

.idea/encodings.xml

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

.idea/misc.xml

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

.idea/modules.xml

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

.idea/scopes/scope_settings.xml

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

.idea/vcs.xml

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

.idea/workspace.xml

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

css/libraries/bootstrap.min.css

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

css/libraries/font-awesome.min.css

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

css/main.css

+192
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,192 @@
1+
html, body {
2+
}
3+
4+
header {
5+
padding: 10px;
6+
background: rgb(41,137,216); /* Old browsers */
7+
background: -moz-linear-gradient(top, rgba(41,137,216,1) 29%, rgba(30,87,153,1) 100%); /* FF3.6+ */
8+
background: -webkit-gradient(linear, left top, left bottom, color-stop(29%,rgba(41,137,216,1)), color-stop(100%,rgba(30,87,153,1))); /* Chrome,Safari4+ */
9+
background: -webkit-linear-gradient(top, rgba(41,137,216,1) 29%,rgba(30,87,153,1) 100%); /* Chrome10+,Safari5.1+ */
10+
background: -o-linear-gradient(top, rgba(41,137,216,1) 29%,rgba(30,87,153,1) 100%); /* Opera 11.10+ */
11+
background: -ms-linear-gradient(top, rgba(41,137,216,1) 29%,rgba(30,87,153,1) 100%); /* IE10+ */
12+
background: linear-gradient(to bottom, rgba(41,137,216,1) 29%,rgba(30,87,153,1) 100%); /* W3C */
13+
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#2989d8', endColorstr='#1e5799',GradientType=0 ); /* IE6-9 */
14+
}
15+
16+
li {
17+
display: inline-block;
18+
}
19+
20+
main > .col-lg-12 {
21+
margin: 0px;
22+
}
23+
24+
.video-container {
25+
margin-left: 4.55% !important;
26+
}
27+
28+
.video {
29+
border: 1px solid #c0c0c0;
30+
height: 300px;
31+
position: relative;
32+
padding: 5px;
33+
margin: 10px 5px 10px 5px;
34+
width: 23% !important;
35+
}
36+
37+
.selected {
38+
background-color: deepskyblue;
39+
}
40+
41+
.selected .video-timestamp {
42+
color: white;
43+
}
44+
45+
.selected:hover .video-timestamp {
46+
color: #000000;
47+
}
48+
49+
.categories {
50+
display: none;
51+
}
52+
53+
.category-list {
54+
margin-top: 10px;
55+
margin-left: 5%;
56+
}
57+
58+
.video:hover {
59+
background-color: #E0F0FF;
60+
}
61+
62+
.video:hover .categories {
63+
display: inline-block;
64+
}
65+
66+
.video:hover .video-image {
67+
display: none;
68+
}
69+
70+
.favorite-selector {
71+
color: black;
72+
margin-left: 100px;
73+
}
74+
75+
.video-image {
76+
position: relative;
77+
}
78+
79+
.player {
80+
height: 75px;
81+
width: 75px;
82+
z-index: 1;
83+
position: absolute;
84+
margin-top: auto;
85+
margin-bottom: auto;
86+
bottom: 0;
87+
top: 0;
88+
margin-left: auto;
89+
margin-right: auto;
90+
left: 0;
91+
right: 0;
92+
background-color: white;
93+
border-radius: 50%;
94+
border: white solid 5px;
95+
box-shadow: 0px 0px 40px 10px black;
96+
}
97+
98+
.video-title {
99+
color: #003366;
100+
}
101+
102+
.video-timestamp {
103+
margin: 5px 0px;
104+
color: #727272;
105+
}
106+
107+
.img {
108+
padding: 5px 0px 5px 0px;
109+
}
110+
111+
.paginate {
112+
margin: 20px 0px 20px 0px;
113+
}
114+
115+
.paginator {
116+
text-align: center;
117+
}
118+
119+
.pages {
120+
display: inline-block;
121+
}
122+
.page {
123+
width: 30px;
124+
height: 30px;
125+
text-align: center;
126+
padding: 5px;
127+
margin: 1px;
128+
background-color: #EEF7FF;
129+
display: inline-block;
130+
border-radius: 5px;
131+
}
132+
133+
.active {
134+
background-color: #7DC0FF;
135+
}
136+
137+
.page:hover {
138+
background-color: #E0F0FF;
139+
color: white;
140+
}
141+
142+
.next {
143+
width: 90px;
144+
padding: 5px 5px 5px 10px;
145+
margin: 5px 5px 5px 10%;
146+
display: inline-block;
147+
border-radius: 0px 20px 20px 0px;
148+
background-color: #E0F0FF;
149+
}
150+
151+
.previous {
152+
width: 90px;
153+
padding: 5px 10px 5px 5px;
154+
text-align: right;
155+
margin: 5px 10% 5px 5px;
156+
display: inline-block;
157+
border-radius: 20px 0px 0px 20px;
158+
background-color: #E0F0FF;
159+
}
160+
161+
.next:hover, .previous:hover {
162+
background-color: #003366;
163+
color: white;
164+
}
165+
166+
167+
.text-white {
168+
color: white;
169+
}
170+
171+
.text-bold {
172+
font-weight: bold;
173+
}
174+
175+
.fa-refresh {
176+
color: white;
177+
margin-left: 20px;
178+
}
179+
180+
.results {
181+
position: absolute;
182+
right: 10px;
183+
color: #ffffff;
184+
}
185+
186+
.results select {
187+
color: #000000;
188+
}
189+
190+
.notAllowed {
191+
cursor: not-allowed;
192+
}

0 commit comments

Comments
 (0)