2022-06-24 18:16:55 +00:00
|
|
|
@import "createGame.scss";
|
|
|
|
@import "font.scss";
|
|
|
|
@import "canvas.scss";
|
|
|
|
@import "slider.scss";
|
|
|
|
@import "joinGame.scss";
|
2022-06-23 20:18:23 +00:00
|
|
|
|
2022-06-23 05:44:57 +00:00
|
|
|
|
2022-06-24 12:10:06 +00:00
|
|
|
h1, h2, h3 {
|
2022-06-23 05:44:57 +00:00
|
|
|
margin: 0px;
|
|
|
|
}
|
|
|
|
|
|
|
|
h1 {
|
|
|
|
font-size: 3em;
|
|
|
|
}
|
2022-06-23 01:14:51 +00:00
|
|
|
|
2022-06-23 05:44:57 +00:00
|
|
|
h2 {
|
|
|
|
font-size: 2.5em;
|
|
|
|
}
|
|
|
|
h3 {
|
|
|
|
font-size: 2em;
|
|
|
|
}
|
2022-06-23 01:14:51 +00:00
|
|
|
|
2022-06-23 05:44:57 +00:00
|
|
|
p, span, input, button, u {
|
|
|
|
font-size: 1.7em;
|
|
|
|
}
|
|
|
|
|
2022-06-23 19:27:36 +00:00
|
|
|
|
2022-06-23 05:44:57 +00:00
|
|
|
hr {
|
|
|
|
border-color: white;
|
|
|
|
/* height: 3px; */
|
|
|
|
border: none;
|
|
|
|
height: 3px;
|
|
|
|
background: white;
|
|
|
|
margin: 0px;
|
|
|
|
padding: 0px;
|
|
|
|
}
|
2022-06-23 01:14:51 +00:00
|
|
|
|
2022-06-23 05:44:57 +00:00
|
|
|
.row {
|
|
|
|
padding: 20px;
|
|
|
|
display: flex;
|
|
|
|
justify-content:space-between;
|
|
|
|
align-items: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
.row > span {
|
|
|
|
margin-left: 20px;
|
|
|
|
margin-right: 20px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.leftRight {
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
flex-wrap: wrap;
|
|
|
|
}
|
|
|
|
|
|
|
|
.centerBar {
|
|
|
|
width: 3px;
|
|
|
|
height: inherit;
|
|
|
|
background: white
|
|
|
|
}
|
|
|
|
|
|
|
|
.right {
|
|
|
|
display: inline;
|
|
|
|
margin: 40px;
|
2022-06-23 20:18:23 +00:00
|
|
|
/* background: orange; */
|
2022-06-23 05:44:57 +00:00
|
|
|
|
|
|
|
}
|
2022-06-23 01:14:51 +00:00
|
|
|
|
2022-06-23 05:44:57 +00:00
|
|
|
.left {
|
|
|
|
display: inline;
|
|
|
|
margin: 40px;
|
|
|
|
/* background: red; */
|
|
|
|
}
|
|
|
|
|
2022-06-24 12:10:06 +00:00
|
|
|
.codeContainer {
|
|
|
|
margin-right: auto;
|
|
|
|
margin-left: auto;
|
|
|
|
margin-top: 20px;
|
|
|
|
margin-bottom: 20px;
|
|
|
|
display: block;
|
|
|
|
position: relative;
|
|
|
|
/* background: red; */
|
|
|
|
width: 700px;
|
|
|
|
}
|
|
|
|
|
|
|
|
input {
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
2022-06-23 05:44:57 +00:00
|
|
|
|
|
|
|
input[type=button], button, .buttonLink {
|
2022-06-23 20:18:23 +00:00
|
|
|
width: 50%;
|
2022-06-23 05:44:57 +00:00
|
|
|
background-color: #4CAF50;
|
|
|
|
color: white;
|
|
|
|
padding: 14px 20px;
|
|
|
|
margin: 8px 0;
|
|
|
|
border: none;
|
|
|
|
cursor: pointer; }
|
|
|
|
|
2022-06-24 18:16:55 +00:00
|
|
|
input[type=number], input[type=text] {
|
|
|
|
/* width: 100%; */
|
|
|
|
width: 300px;
|
2022-06-23 01:14:51 +00:00
|
|
|
display: inline-block;
|
2022-06-24 18:16:55 +00:00
|
|
|
padding: 12px 20px;
|
|
|
|
margin: 3px 0;
|
|
|
|
border: none;
|
|
|
|
box-sizing: border-box;
|
|
|
|
background-color: lightgray; }
|
2022-06-23 01:14:51 +00:00
|
|
|
|
|
|
|
|
|
|
|
.canvasStack {
|
|
|
|
background: darkslategray;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
main {
|
|
|
|
margin-left: auto;
|
|
|
|
margin-right: auto;
|
|
|
|
}
|
|
|
|
|
2022-06-24 18:16:55 +00:00
|
|
|
|
2022-06-23 00:16:57 +00:00
|
|
|
|
|
|
|
|
2022-06-23 01:14:51 +00:00
|
|
|
.hidden {
|
|
|
|
display: none;
|
2022-06-23 00:16:57 +00:00
|
|
|
}
|
|
|
|
|
2022-06-23 01:14:51 +00:00
|
|
|
body {
|
|
|
|
text-align: center;
|
|
|
|
background-color: #2c2f33;
|
|
|
|
color: white;
|
2022-06-23 00:16:57 +00:00
|
|
|
|
|
|
|
}
|