mirror of
https://git.kittycat.homes/zoe/reversi.git
synced 2024-08-15 03:27:19 +00:00
cleanup whitespace in new room requests
This commit is contained in:
parent
cdf392a232
commit
c686002dc1
6 changed files with 28 additions and 14 deletions
|
@ -2,6 +2,7 @@ function copyURI(evt) {
|
|||
evt.preventDefault();
|
||||
navigator.clipboard.writeText(evt.target.getAttribute('href')).then(() => {
|
||||
/* clipboard successfully set */
|
||||
document.getElementById("urlForCopy").innerHTML = "copied";
|
||||
}, () => {
|
||||
/* clipboard write failed */
|
||||
});
|
||||
|
|
|
@ -7,6 +7,11 @@
|
|||
--accent1: #accce4;
|
||||
}
|
||||
|
||||
* {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
body,
|
||||
html {
|
||||
color: var(--text);
|
||||
|
@ -19,8 +24,10 @@ html {
|
|||
justify-content: center;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
size: 100%;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
scrollbar-color: var(--accent1);
|
||||
}
|
||||
|
||||
::selection {
|
||||
|
@ -45,12 +52,12 @@ footer {
|
|||
overflow: visible;
|
||||
left: 0;
|
||||
display: flex;
|
||||
height: 10%;
|
||||
bottom: 0;
|
||||
width: 100%;
|
||||
font-size: 3em;
|
||||
font-size: 16pt;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
height: 10%;
|
||||
}
|
||||
|
||||
.contentdiv {
|
||||
|
@ -58,8 +65,9 @@ footer {
|
|||
flex-direction: column;
|
||||
align-items: center;
|
||||
align-self: center;
|
||||
min-height: 80%;
|
||||
min-height: 90%;
|
||||
justify-content: center;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
button,
|
||||
|
@ -68,8 +76,8 @@ a,
|
|||
p {
|
||||
line-height: 1.84em;
|
||||
border-radius: 0.48em;
|
||||
font-size: 32pt;
|
||||
margin: 0.5em;
|
||||
font-size: 24pt;
|
||||
margin-top: 0.5em;
|
||||
text-align: center;
|
||||
font-family: "Sen", sans-serif;
|
||||
line-break: anywhere;
|
||||
|
@ -79,10 +87,10 @@ a,
|
|||
button,
|
||||
input {
|
||||
outline: none;
|
||||
padding: 2%;
|
||||
background-color: var(--background);
|
||||
color: var(--text);
|
||||
border: 0.12em solid var(--text);
|
||||
width: 90%;
|
||||
}
|
||||
|
||||
input {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue