Skip to content

Commit f88721e

Browse files
committed
Adding copyright message to the botom
1 parent 7de0fdf commit f88721e

File tree

4 files changed

+22
-0
lines changed

4 files changed

+22
-0
lines changed

DesktopApp/index.html

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -64,5 +64,8 @@
6464
<button id="close">&#x2715;</button>
6565
</div>
6666
</div>
67+
<div id="bottom">
68+
Copyright &copy; 2024 Zenin Easa Panthakkalakath
69+
</div>
6770
</body>
6871
</html>

DesktopApp/styles.css

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -131,6 +131,7 @@ body > * {
131131
display: flex;
132132
justify-content: space-between;
133133
padding-left: 2em;
134+
padding-right: 2em;
134135
text-align: center;
135136
}
136137
#content .grid .config .keyVal:hover {
@@ -153,3 +154,10 @@ body > * {
153154
vertical-align: middle;
154155
text-align: center;
155156
}
157+
158+
#bottom {
159+
position: fixed;
160+
bottom: 0;
161+
left: 50%;
162+
transform: translateX(-50%);
163+
}

JoystickWebApp/index.ejs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,9 @@
5252
Player <%= playerID %>
5353
</div>
5454
</div>
55+
<div class="bottom">
56+
Copyright &copy; 2024 Zenin Easa Panthakkalakath
57+
</div>
5558

5659
<script src="script.js"></script>
5760
</body>

JoystickWebApp/styles.css

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -107,3 +107,11 @@ html, body {
107107
text-transform: uppercase;
108108
color: rgba(255, 255, 255, 0.8);
109109
}
110+
111+
.bottom {
112+
position: fixed;
113+
bottom: 0;
114+
left: 50%;
115+
transform: translateX(-50%);
116+
color: rgba(255, 255, 255, 0.8);
117+
}

0 commit comments

Comments
 (0)