Skip to content

Commit d5ba4da

Browse files
author
James Duncan
committed
fix loading page to not rotate
1 parent 696f983 commit d5ba4da

File tree

1 file changed

+29
-29
lines changed

1 file changed

+29
-29
lines changed

views/adcore/landing.ejs

+29-29
Original file line numberDiff line numberDiff line change
@@ -12,15 +12,15 @@
1212
<link href="/js/bootstrap/css/bootstrap.min.css" rel="stylesheet" />
1313

1414
<style>
15-
.loading-container {
15+
.appdev-loading-container {
1616
height: 100vh;
1717
width: 100vw;
1818
font-family: Helvetica;
1919
background: rgb(0, 168, 158);
2020
color: white;
2121
}
2222
23-
.loader {
23+
.appdev-loader {
2424
height: 20px;
2525
width: 250px;
2626
position: absolute;
@@ -29,13 +29,13 @@
2929
left: 0;
3030
right: 0;
3131
margin: auto;
32-
animation-name: appear;
32+
animation-name: appdev-appear;
3333
animation-timing-function: ease-in;
3434
animation-duration: 2s;
3535
animation-iteration-count: 1;
3636
}
37-
.loader--dot {
38-
animation-name: loader;
37+
.appdev-loader--dot {
38+
animation-name: appdev-loader;
3939
animation-timing-function: ease-in-out;
4040
animation-duration: 3s;
4141
animation-iteration-count: infinite;
@@ -46,7 +46,7 @@
4646
position: absolute;
4747
/* border: 1px solid white; */
4848
}
49-
.loader::before {
49+
.appdev-loader::before {
5050
background-image: url(/images/appdev_logo_white.png);
5151
background-repeat: no-repeat;
5252
width: 450px;
@@ -64,49 +64,49 @@
6464
animation-duration: 3s;
6565
animation-iteration-count: 1; */
6666
}
67-
.loader--dot:first-child {
67+
.appdev-loader--dot:first-child {
6868
background-color: rgba(255,255,255,0.25);
6969
animation-delay: 0.5s;
7070
}
71-
.loader--dot:nth-child(2) {
71+
.appdev-loader--dot:nth-child(2) {
7272
background-color: rgba(255,255,255,0.25);
7373
animation-delay: 0.4s;
7474
}
75-
.loader--dot:nth-child(3) {
75+
.appdev-loader--dot:nth-child(3) {
7676
background-color: rgba(255,255,255,0.25);
7777
animation-delay: 0.3s;
7878
}
79-
.loader--dot:nth-child(4) {
79+
.appdev-loader--dot:nth-child(4) {
8080
background-color: rgba(255,255,255,0.25);
8181
animation-delay: 0.2s;
8282
}
83-
.loader--dot:nth-child(5) {
83+
.appdev-loader--dot:nth-child(5) {
8484
background-color: rgba(255,255,255,0.25);
8585
animation-delay: 0.1s;
8686
}
87-
.loader--dot:nth-child(6) {
87+
.appdev-loader--dot:nth-child(6) {
8888
background-color: rgba(255,255,255,0.25);
8989
animation-delay: 0s;
9090
}
91-
.loader--text {
91+
.appdev-loader--text {
9292
position: absolute;
9393
top: 200%;
9494
left: 0;
9595
right: 0;
9696
width: 4rem;
9797
margin: auto;
9898
}
99-
.loader--text:after {
99+
.appdev-loader--text:after {
100100
content: "Loading";
101101
font-weight: bold;
102-
animation-name: loading-text;
102+
animation-name: appdev-loading-text;
103103
animation-duration: 3s;
104104
animation-iteration-count: infinite;
105105
}
106-
.logo {
106+
.appdev-logo {
107107
}
108108
109-
@keyframes appear {
109+
@keyframes appdev-appear {
110110
0% {
111111
opacity: 0;
112112
}
@@ -115,7 +115,7 @@
115115
}
116116
}
117117
118-
@keyframes loader {
118+
@keyframes appdev-loader {
119119
15% {
120120
transform: translateX(0);
121121
}
@@ -128,8 +128,8 @@
128128
95% {
129129
transform: translateX(0);
130130
}
131-
}
132-
@keyframes loading-text {
131+
}
132+
@keyframes appdev-loading-text {
133133
0% {
134134
content: "Loading";
135135
}
@@ -149,15 +149,15 @@
149149
<body>
150150

151151

152-
<div class="loading-container">
153-
<div class="loader">
154-
<div class="loader--dot"></div>
155-
<div class="loader--dot"></div>
156-
<div class="loader--dot"></div>
157-
<div class="loader--dot"></div>
158-
<div class="loader--dot"></div>
159-
<div class="loader--dot"></div>
160-
<div class="loader--text"></div>
152+
<div class="appdev-loading-container">
153+
<div class="appdev-loader">
154+
<div class="appdev-loader--dot"></div>
155+
<div class="appdev-loader--dot"></div>
156+
<div class="appdev-loader--dot"></div>
157+
<div class="appdev-loader--dot"></div>
158+
<div class="appdev-loader--dot"></div>
159+
<div class="appdev-loader--dot"></div>
160+
<div class="appdev-loader--text"></div>
161161
</div>
162162
</div>
163163
<div appdev-opsportal="default" portal-autoenter="true" ></div>

0 commit comments

Comments
 (0)