29 lines
471 B
CSS
29 lines
471 B
CSS
body {
|
|
font-family: Arial, Helvetica, sans-serif;
|
|
background-color: white;
|
|
margin: 0 auto;
|
|
width: 600px;
|
|
border: 3px solid blue;
|
|
padding: 0 2em 1em;
|
|
}
|
|
h1 {
|
|
color: blue;
|
|
}
|
|
label {
|
|
display: inline-block;
|
|
margin-right: 1em;
|
|
}
|
|
input {
|
|
margin-top: 1em;
|
|
margin-right: 1em;
|
|
}
|
|
#turn div {
|
|
color: red;
|
|
margin-top: 1em;
|
|
}
|
|
#score1, #score2, #die, #total {
|
|
width: 5em;
|
|
}
|
|
.hide {
|
|
display: none;
|
|
} |