Skip to content

Commit 8d44e3b

Browse files
committed
Initial
0 parents  commit 8d44e3b

File tree

132 files changed

+200250
-0
lines changed

Some content is hidden

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

132 files changed

+200250
-0
lines changed

.gitignore

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
node_modules
2+
**/semantic/dist/components/*
3+
**/semantic/dist/themes/*
4+
!**/semantic/dist/themes/default

CNAME

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
linuxtester.me

README.md

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
# React
2+
3+
- Learn how to incorporate proper animations before manipulating DOM. Even something as simple as hiding, youre screwing up.
4+
5+
# Todo
6+
7+
- Check if process.env.DEBUG is forcing webpack to import the whole process module into the bundle.
8+
- `private` must be inside settings
9+
- Change 'bluray' to plural in API.
10+
- Entry ID 0 does not exist?
11+
- Handle how the parsing is done if an entry if modified or ignored.

assets/css/dark.css

+110
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,110 @@
1+
.ui.reactPage.grid {
2+
margin-top: 3em;
3+
}
4+
5+
input[type="file"] {
6+
display: none;
7+
}
8+
9+
.ui.checkbox input[type=checkbox], .ui.checkbox input[type=radio] {
10+
opacity: 1 !important;
11+
}
12+
/*.ui.search>.results .result .description*/
13+
.sub.header {
14+
font-family: 'Proxima-Nova-Regular';
15+
}
16+
17+
.description {
18+
font-family: 'Proxima-Nova-Thin';
19+
}
20+
21+
.force.hide {
22+
display: none;
23+
}
24+
25+
.ui.padded.menu>.item {
26+
padding: 1.3rem;
27+
}
28+
29+
.backdrop {
30+
position: absolute;
31+
left: 0;
32+
right: 0;
33+
height: 100%;
34+
width: 100%;
35+
background-position: center;
36+
background-size: cover;
37+
filter: blur(10px) brightness(0.4) opacity(0.8);
38+
}
39+
40+
.background {
41+
position: absolute;
42+
left: 0;
43+
right: 0;
44+
height: 100%;
45+
width: 100%;
46+
background-position: center;
47+
background-size: cover;
48+
filter: blur(0px) brightness(0.7) opacity(0.8);
49+
}
50+
51+
.ui.page.dimmer {
52+
background-color: #000000 !important;
53+
}
54+
55+
.actor {
56+
float: left;
57+
width: 50px;
58+
height: 50px;
59+
overflow: hidden;
60+
border-radius: 100% !important;
61+
margin-right: 0.5em !important;
62+
}
63+
64+
.no-padding {
65+
padding: 0 !important;
66+
}
67+
.no-margin {
68+
margin: 0!important
69+
}
70+
71+
.notification-bar.success {
72+
z-index: 1000000;
73+
background: #21BA45 !important;
74+
}
75+
76+
.notification-bar.error {
77+
z-index: 1000000;
78+
background: #DC3522 !important;
79+
}
80+
81+
.ui.sidebar .item {
82+
padding: 0em;
83+
padding-top: 0.928571em;
84+
}
85+
86+
.ui.sidebar .item:last-child {
87+
padding-bottom: 0.928571em;
88+
}
89+
90+
.ui.popup h5 {
91+
font-size: 0.8rem;
92+
overflow: hidden;
93+
white-space: nowrap;
94+
text-overflow: ellipsis;
95+
}
96+
97+
.success.item {
98+
background: #21BA45;
99+
}
100+
101+
.ui.star.rating .icon {
102+
color: rgba(0,0,0,0.75)
103+
}
104+
105+
/*Use proxima nova light for description*/
106+
.ui.list >.item .description {
107+
display: block;
108+
color: white;
109+
font-family: Proxima-Nova-Thin;
110+
}

0 commit comments

Comments
 (0)