Show sourcecode
The following files exists in this folder. Click to view.
admin.php
bilder/
checkUpdates.php
confirmPassword.php
confirmSignIn.php
createadmin.php
endScreen.php
getBoard.php
getChat.php
getHand.php
getTurnPlayer.php
lobbies.php
logIn.php
play.php
playCard.php
signIn.php
start.php
startsida.php
style.css
tables.php
update.php
updatePassword.php
waitInfo.php
waitingRoom.php
style.css
186 lines ASCII Windows (CRLF)
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186
body {
margin: 0;
}
.table {
background-color: black;
}
.table * {
background-color: white;
}
header {
display: flex;
align-items: center;
background-color: #444;
height: 10vh;
}
header * {
margin-left: 2vw;
font-size: 1.3em;
color: white;
}
header input {
border: 2px solid black;
border-radius: 10px;
color: black;
}
#games {
font-size: 1.5em;
width: 30vw;
height: 90vh;
background-color: #3f2a21;
margin: 0;
}
#startMain {
position: absolute;
right: 0;
top: 10vh;
width: 70vw;
background-color: #2f1a11;
height: 90vh;
display: flex;
justify-content: space-around;
}
#startForms * {
color: white;
}
#startForms input, #startForms select, #startForms option {
border: 2px solid black;
border-radius: 10px;
color: black;
}
#changePwd {
position: fixed;
bottom: 3vh;
right: 3vw;
}
#hands {
display: flex;
position: fixed;
top: 0;
}
.hand {
display: flex;
justify-content: center;
}
.hand img {
width: 3vw;
}
.hand img:hover {
box-shadow: 0px 0px 20px #888;
}
#pself {
position: fixed;
bottom: 0;
width: 70vw;
}
#pself img {
width: 6vw;
margin-left: 3px;
}
#gameMain {
background-color: #aaa;
}
#board {
margin: 20vh auto;
display: grid;
grid-template-columns: auto auto;
width: 16vw;
min-height: 23.09vw;
background-image: url("bilder/board.png");
background-size: contain;
}
#board img {
width: 8vw;
}
main {
position: fixed;
top: 0;
height: 100vh;
width: 70vw;
}
aside {
position: fixed;
top: 0;
right: 0;
height: 100vh;
width: 30vw;
background-color: brown;
}
#trumfDiv {
width: 20vh;
margin: 5vh 3vw;
padding: 5%;
background-color: #2f1a11;
}
#trumfDiv p {
color: white;
font-size: 1.2em;
margin: 2vh 0 0;
}
#trumfDiv img {
width: 100%;
}
#exitForm {
position: fixed;
top: 10vh;
right: 2vw;
}
#exitForm * {
font-size: 2em;
height: 15vh;
width: 100%;
}
#turnPlayerDiv {
text-align: center;
margin: auto;
background-color: lightgray;
font-size: 3em;
}
#chat {
position: fixed;
bottom: 1vh;
right: 4vw;
display: flex;
flex-direction: column;
overflow: auto;
background-color: lightgray;
width: 20vw;
height: 35vh;
border: 10px solid rgb(116, 71, 31);
}
#chat span {
margin-bottom: 10px;
}
#chat img {
width: 30px;
}