anxiety/game.css

47 lines
531 B
CSS

html,body{
width: 100%;
height: 100%;
}
body{
margin:0;
background: #ddd;
}
#game_container{
position: absolute;
top:0; left:0; bottom:0; right:0;
margin: auto;
width: 360px;
height: 600px;
background: #fff;
font-size: 20px;
font-family: Helvetica, Arial, sans-serif;
font-weight: 100;
line-height: 1.3em;
}
#game_text{
width: auto;
height: 450px;
overflow: scroll;
}
#game_text > div{
margin: 30px;
}
#game_choices{
width: 100%;
height: 150px;
position: absolute;
bottom:0;
background: #666;
}