Compare commits

..

No commits in common. "f725b4e9224c58b045fb264d0746f71c2e5c719b" and "90c868d9e9e865fb551690eff3ba524537c5bf6d" have entirely different histories.

4 changed files with 25 additions and 2 deletions

View File

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

View File

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

23
src/pong.css Normal file
View File

@ -0,0 +1,23 @@
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;
}