16 lines
194 B
CSS
16 lines
194 B
CSS
html, body {
|
|
width: 300px;
|
|
}
|
|
|
|
.page-choice {
|
|
width: 100%;
|
|
padding: 4px;
|
|
font-size: 1.5em;
|
|
text-align: center;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.page-choice:hover {
|
|
background-color: #CFF2F2;
|
|
}
|