Compare commits

..

3 Commits

Author SHA1 Message Date
Trianta
f725b4e922 core: propagate changes throughout files 2024-11-16 02:45:38 -06:00
Trianta
8252f38bb7 core: move home page css to root and rename 2024-11-16 02:38:15 -06:00
Trianta
e4d9afdd68 pong: remove unused css file 2024-11-16 02:32:58 -06:00
4 changed files with 2 additions and 25 deletions

View File

@ -14,9 +14,9 @@ RUN npm run build
WORKDIR /usr/share/nginx/html
COPY index.html .
COPY default.css .
RUN mkdir -p /usr/share/nginx/html/public
COPY src/*.css ./public
RUN cp /app/build/* ./public

View File

@ -3,7 +3,7 @@
<head>
<meta charset="utf-8"/>
<title>Trianta</title>
<link rel="stylesheet" href="public/home.css" />
<link rel="stylesheet" href="default.css" />
</head>
<body>
<div id="navigation">

View File

@ -1,23 +0,0 @@
html, body {
height: 100%;
margin: 0;
}
body {
background: black;
display: flex;
align-items: center;
justify-content: center;
}
.button {
background: blue;
color: white;
padding: 15px 20px;
font-size: 32px;
font-family: Arial, Helvetica, sans-serif;
text-transform: uppercase;
cursor: pointer;
position: relative;
}