Skip to content

Commit c4bfade

Browse files
committed
Added index.html|.css and update README
1 parent 420ad1e commit c4bfade

File tree

3 files changed

+210
-4
lines changed

3 files changed

+210
-4
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
# Testing the Cloudron GithHub Action for Pushing to Cloudron Apps
22

3-
## Lorem Ipsum
3+
## Reference the Forum Topic
44

5-
> dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
5+
This is a demo for [Connecting the LAMP app with Git](https://forum.cloudron.io/topic/14622/connecting-the-lamp-app-with-git)
66

7-
## Foo Bar
7+
You should be able to download the resulting `README.md` file from the LAMP app after pushing this repo to your Cloudron LAMP app using the Cloudron GitHub Action.
88

9-
Hello World!
9+
Check it [default-lamp.cloudron.dev/README.md](https://default-lamp.cloudron.dev/README.md)

index.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/css?family=Audiowide&display=swap');
2+
3+
html,
4+
body{
5+
margin: 0px;
6+
overflow: hidden;
7+
}
8+
9+
div{
10+
position: absolute;
11+
top: 0%;
12+
left: 0%;
13+
height: 100%;
14+
width: 100%;
15+
margin: 0px;
16+
background: radial-gradient(circle, #240015 0%, #12000b 100%);
17+
overflow: hidden;
18+
}
19+
20+
.wrap{
21+
position: absolute;
22+
left: 50%;
23+
top: 50%;
24+
transform: translate(-50%, -50%);
25+
}
26+
27+
h2{
28+
position: absolute;
29+
top: 50%;
30+
left: 50%;
31+
margin-top: 150px;
32+
font-size: 32px;
33+
text-transform: uppercase;
34+
transform: translate(-50%, -50%);
35+
display: block;
36+
color: #12000a;
37+
font-weight: 300;
38+
font-family: Audiowide;
39+
text-shadow: 0px 0px 4px #12000a;
40+
animation: fadeInText 3s ease-in 3.5s forwards, flicker4 5s linear 7.5s infinite, hueRotate 6s ease-in-out 3s infinite;
41+
}
42+
43+
#svgWrap_1,
44+
#svgWrap_2{
45+
position: absolute;
46+
height: auto;
47+
width: 600px;
48+
max-width: 100%;
49+
top: 50%;
50+
left: 50%;
51+
transform: translate(-50%, -50%);
52+
}
53+
54+
#svgWrap_1,
55+
#svgWrap_2,
56+
div{
57+
animation: hueRotate 6s ease-in-out 3s infinite;
58+
}
59+
60+
#id1_1,
61+
#id2_1,
62+
#id3_1{
63+
stroke: #ff005d;
64+
stroke-width: 3px;
65+
fill: transparent;
66+
filter: url(#glow);
67+
}
68+
69+
#id1_2,
70+
#id2_2,
71+
#id3_2{
72+
stroke: #12000a;
73+
stroke-width: 3px;
74+
fill: transparent;
75+
filter: url(#glow);
76+
}
77+
78+
#id3_1{
79+
stroke-dasharray: 940px;
80+
stroke-dashoffset: -940px;
81+
animation: drawLine3 2.5s ease-in-out 0s forwards, flicker3 4s linear 4s infinite;
82+
}
83+
84+
#id2_1{
85+
stroke-dasharray: 735px;
86+
stroke-dashoffset: -735px;
87+
animation: drawLine2 2.5s ease-in-out 0.5s forwards, flicker2 4s linear 4.5s infinite;
88+
}
89+
90+
#id1_1{
91+
stroke-dasharray: 940px;
92+
stroke-dashoffset: -940px;
93+
animation: drawLine1 2.5s ease-in-out 1s forwards, flicker1 4s linear 5s infinite;
94+
}
95+
96+
@keyframes drawLine1 {
97+
0% {stroke-dashoffset: -940px;}
98+
100%{stroke-dashoffset: 0px;}
99+
}
100+
101+
@keyframes drawLine2 {
102+
0% {stroke-dashoffset: -735px;}
103+
100%{stroke-dashoffset: 0px;}
104+
}
105+
106+
@keyframes drawLine3 {
107+
0% {stroke-dashoffset: -940px;}
108+
100%{stroke-dashoffset: 0px;}
109+
}
110+
111+
@keyframes flicker1{
112+
0% {stroke: #ff005d;}
113+
1% {stroke: transparent;}
114+
3% {stroke: transparent;}
115+
4% {stroke: #ff005d;}
116+
6% {stroke: #ff005d;}
117+
7% {stroke: transparent;}
118+
13% {stroke: transparent;}
119+
14% {stroke: #ff005d;}
120+
100%{stroke: #ff005d;}
121+
}
122+
123+
@keyframes flicker2{
124+
0% {stroke: #ff005d;}
125+
50% {stroke: #ff005d;}
126+
51% {stroke: transparent;}
127+
61% {stroke: transparent;}
128+
62% {stroke: #ff005d;}
129+
100%{stroke: #ff005d;}
130+
}
131+
132+
@keyframes flicker3{
133+
0% {stroke: #ff005d;}
134+
1% {stroke: transparent;}
135+
10% {stroke: transparent;}
136+
11% {stroke: #ff005d;}
137+
40% {stroke: #ff005d;}
138+
41% {stroke: transparent;}
139+
45% {stroke: transparent;}
140+
46% {stroke: #ff005d;}
141+
100%{stroke: #ff005d;}
142+
}
143+
144+
@keyframes flicker4{
145+
0% {color: #ff005d;text-shadow:0px 0px 4px #ff005d;}
146+
30% {color: #ff005d;text-shadow:0px 0px 4px #ff005d;}
147+
31% {color: #12000a;text-shadow:0px 0px 4px #12000a;}
148+
32% {color: #ff005d;text-shadow:0px 0px 4px #ff005d;}
149+
36% {color: #ff005d;text-shadow:0px 0px 4px #ff005d;}
150+
37% {color: #12000a;text-shadow:0px 0px 4px #12000a;}
151+
41% {color: #12000a;text-shadow:0px 0px 4px #12000a;}
152+
42% {color: #ff005d;text-shadow:0px 0px 4px #ff005d;}
153+
85% {color: #ff005d;text-shadow:0px 0px 4px #ff005d;}
154+
86% {color: #12000a;text-shadow:0px 0px 4px #12000a;}
155+
95% {color: #12000a;text-shadow:0px 0px 4px #12000a;}
156+
96% {color: #ff005d;text-shadow:0px 0px 4px #ff005d;}
157+
100%{color: #ff005d;text-shadow:0px 0px 4px #ff005d;}
158+
}
159+
160+
@keyframes fadeInText{
161+
1% {color: #12000a;text-shadow:0px 0px 4px #12000a;}
162+
70% {color: #ff005d;text-shadow:0px 0px 14px #ff005d;}
163+
100%{color: #ff005d;text-shadow:0px 0px 4px #ff005d;}
164+
}
165+
166+
@keyframes hueRotate{
167+
0% {
168+
filter: hue-rotate(0deg);
169+
}
170+
50% {
171+
filter: hue-rotate(-120deg);
172+
}
173+
100% {
174+
filter: hue-rotate(0deg);
175+
}
176+
}

index.html

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
<link rel="stylesheet" href="index.css">
2+
<div></div>
3+
<svg id="svgWrap_2" xmlns="http://www.w3.org/2000/svg" x="0px" y="0px" viewBox="0 0 700 250">
4+
<g>
5+
<path id="id3_2" d="M195.7 232.67h-37.1V149.7H27.76c-2.64 0-5.1-.5-7.36-1.49-2.27-.99-4.23-2.31-5.88-3.96-1.65-1.65-2.95-3.61-3.89-5.88s-1.42-4.67-1.42-7.22V29.62h36.82v82.98H158.6V29.62h37.1v203.05z"/>
6+
<path id="id2_2" d="M470.69 147.71c0 8.31-1.06 16.17-3.19 23.58-2.12 7.41-5.12 14.28-8.99 20.6-3.87 6.33-8.45 11.99-13.74 16.99-5.29 5-11.07 9.28-17.35 12.81a85.146 85.146 0 0 1-20.04 8.14 83.637 83.637 0 0 1-21.67 2.83H319.3c-7.46 0-14.73-.94-21.81-2.83-7.08-1.89-13.76-4.6-20.04-8.14a88.292 88.292 0 0 1-17.35-12.81c-5.29-5-9.84-10.67-13.66-16.99-3.82-6.32-6.8-13.19-8.92-20.6-2.12-7.41-3.19-15.27-3.19-23.58v-33.13c0-12.46 2.34-23.88 7.01-34.27 4.67-10.38 10.92-19.33 18.76-26.83 7.83-7.5 16.87-13.36 27.12-17.56 10.24-4.2 20.93-6.3 32.07-6.3h66.41c7.36 0 14.58.94 21.67 2.83 7.08 1.89 13.76 4.6 20.04 8.14a88.292 88.292 0 0 1 17.35 12.81c5.29 5 9.86 10.67 13.74 16.99 3.87 6.33 6.87 13.19 8.99 20.6 2.13 7.41 3.19 15.27 3.19 23.58v33.14zm-37.1-33.13c0-7.27-1.32-13.88-3.96-19.82-2.64-5.95-6.16-11.04-10.55-15.29-4.39-4.25-9.46-7.5-15.22-9.77-5.76-2.27-11.8-3.35-18.13-3.26h-66.41c-6.14-.09-12.11.97-17.91 3.19-5.81 2.22-10.95 5.43-15.44 9.63-4.48 4.2-8.07 9.3-10.76 15.29-2.69 6-4.04 12.67-4.04 20.04v33.13c0 7.36 1.32 14.02 3.96 19.97 2.64 5.95 6.18 11.02 10.62 15.22 4.44 4.2 9.56 7.43 15.36 9.7 5.8 2.27 11.87 3.35 18.2 3.26h66.41c7.27 0 13.85-1.2 19.75-3.61s10.93-5.73 15.08-9.98 7.36-9.32 9.63-15.22c2.27-5.9 3.4-12.34 3.4-19.33v-33.15zm-16-26.91a17.89 17.89 0 0 1 2.83 6.73c.47 2.41.47 4.77 0 7.08-.47 2.31-1.39 4.48-2.76 6.51-1.37 2.03-3.14 3.75-5.31 5.17l-99.4 66.41c-1.61 1.23-3.26 2.08-4.96 2.55-1.7.47-3.45.71-5.24.71-3.02 0-5.9-.71-8.64-2.12-2.74-1.42-4.96-3.44-6.66-6.09a17.89 17.89 0 0 1-2.83-6.73c-.47-2.41-.5-4.77-.07-7.08.43-2.31 1.3-4.48 2.62-6.51 1.32-2.03 3.07-3.75 5.24-5.17l99.69-66.41a17.89 17.89 0 0 1 6.73-2.83c2.41-.47 4.77-.47 7.08 0 2.31.47 4.48 1.37 6.51 2.69 2.03 1.32 3.75 3.02 5.17 5.09z"/>
7+
<path id="id1_2" d="M688.33 232.67h-37.1V149.7H520.39c-2.64 0-5.1-.5-7.36-1.49-2.27-.99-4.23-2.31-5.88-3.96-1.65-1.65-2.95-3.61-3.89-5.88s-1.42-4.67-1.42-7.22V29.62h36.82v82.98h112.57V29.62h37.1v203.05z"/>
8+
</g>
9+
</svg>
10+
<svg id="svgWrap_1" xmlns="http://www.w3.org/2000/svg" x="0px" y="0px" viewBox="0 0 700 250">
11+
<g>
12+
<path id="id3_1" d="M195.7 232.67h-37.1V149.7H27.76c-2.64 0-5.1-.5-7.36-1.49-2.27-.99-4.23-2.31-5.88-3.96-1.65-1.65-2.95-3.61-3.89-5.88s-1.42-4.67-1.42-7.22V29.62h36.82v82.98H158.6V29.62h37.1v203.05z"/>
13+
<path id="id2_1" d="M470.69 147.71c0 8.31-1.06 16.17-3.19 23.58-2.12 7.41-5.12 14.28-8.99 20.6-3.87 6.33-8.45 11.99-13.74 16.99-5.29 5-11.07 9.28-17.35 12.81a85.146 85.146 0 0 1-20.04 8.14 83.637 83.637 0 0 1-21.67 2.83H319.3c-7.46 0-14.73-.94-21.81-2.83-7.08-1.89-13.76-4.6-20.04-8.14a88.292 88.292 0 0 1-17.35-12.81c-5.29-5-9.84-10.67-13.66-16.99-3.82-6.32-6.8-13.19-8.92-20.6-2.12-7.41-3.19-15.27-3.19-23.58v-33.13c0-12.46 2.34-23.88 7.01-34.27 4.67-10.38 10.92-19.33 18.76-26.83 7.83-7.5 16.87-13.36 27.12-17.56 10.24-4.2 20.93-6.3 32.07-6.3h66.41c7.36 0 14.58.94 21.67 2.83 7.08 1.89 13.76 4.6 20.04 8.14a88.292 88.292 0 0 1 17.35 12.81c5.29 5 9.86 10.67 13.74 16.99 3.87 6.33 6.87 13.19 8.99 20.6 2.13 7.41 3.19 15.27 3.19 23.58v33.14zm-37.1-33.13c0-7.27-1.32-13.88-3.96-19.82-2.64-5.95-6.16-11.04-10.55-15.29-4.39-4.25-9.46-7.5-15.22-9.77-5.76-2.27-11.8-3.35-18.13-3.26h-66.41c-6.14-.09-12.11.97-17.91 3.19-5.81 2.22-10.95 5.43-15.44 9.63-4.48 4.2-8.07 9.3-10.76 15.29-2.69 6-4.04 12.67-4.04 20.04v33.13c0 7.36 1.32 14.02 3.96 19.97 2.64 5.95 6.18 11.02 10.62 15.22 4.44 4.2 9.56 7.43 15.36 9.7 5.8 2.27 11.87 3.35 18.2 3.26h66.41c7.27 0 13.85-1.2 19.75-3.61s10.93-5.73 15.08-9.98 7.36-9.32 9.63-15.22c2.27-5.9 3.4-12.34 3.4-19.33v-33.15zm-16-26.91a17.89 17.89 0 0 1 2.83 6.73c.47 2.41.47 4.77 0 7.08-.47 2.31-1.39 4.48-2.76 6.51-1.37 2.03-3.14 3.75-5.31 5.17l-99.4 66.41c-1.61 1.23-3.26 2.08-4.96 2.55-1.7.47-3.45.71-5.24.71-3.02 0-5.9-.71-8.64-2.12-2.74-1.42-4.96-3.44-6.66-6.09a17.89 17.89 0 0 1-2.83-6.73c-.47-2.41-.5-4.77-.07-7.08.43-2.31 1.3-4.48 2.62-6.51 1.32-2.03 3.07-3.75 5.24-5.17l99.69-66.41a17.89 17.89 0 0 1 6.73-2.83c2.41-.47 4.77-.47 7.08 0 2.31.47 4.48 1.37 6.51 2.69 2.03 1.32 3.75 3.02 5.17 5.09z"/>
14+
<path id="id1_1" d="M688.33 232.67h-37.1V149.7H520.39c-2.64 0-5.1-.5-7.36-1.49-2.27-.99-4.23-2.31-5.88-3.96-1.65-1.65-2.95-3.61-3.89-5.88s-1.42-4.67-1.42-7.22V29.62h36.82v82.98h112.57V29.62h37.1v203.05z"/>
15+
</g>
16+
</svg>
17+
18+
<svg>
19+
<defs>
20+
<filter id="glow">
21+
<fegaussianblur class="blur" result="coloredBlur" stddeviation="4"></fegaussianblur>
22+
<femerge>
23+
<femergenode in="coloredBlur"></femergenode>
24+
<femergenode in="SourceGraphic"></femergenode>
25+
</femerge>
26+
</filter>
27+
</defs>
28+
</svg>
29+
30+
<h2>Page Not Found</h2>

0 commit comments

Comments
 (0)