Compare commits
No commits in common. "f725b4e9224c58b045fb264d0746f71c2e5c719b" and "90c868d9e9e865fb551690eff3ba524537c5bf6d" have entirely different histories.
f725b4e922
...
90c868d9e9
@ -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
|
||||
|
||||
|
@ -3,7 +3,7 @@
|
||||
<head>
|
||||
<meta charset="utf-8"/>
|
||||
<title>Trianta</title>
|
||||
<link rel="stylesheet" href="default.css" />
|
||||
<link rel="stylesheet" href="public/home.css" />
|
||||
</head>
|
||||
<body>
|
||||
<div id="navigation">
|
||||
|
23
src/pong.css
Normal file
23
src/pong.css
Normal 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;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user