22 lines
368 B
CSS
22 lines
368 B
CSS
body {
|
|
font-size: 20px;
|
|
height: 100%;
|
|
font-family: "Lucida Console";
|
|
}
|
|
|
|
button {
|
|
font-family: "Lucida Console" ;
|
|
background-color: #349237;
|
|
color: white;
|
|
padding: 10px 15px;
|
|
border: none;
|
|
border-radius: 4px;
|
|
cursor: pointer;
|
|
font-size: 16px;
|
|
margin: 0 10px; /* Add margin to separate buttons */
|
|
}
|
|
|
|
p {
|
|
color: red;
|
|
}
|