mirror of
https://github.com/CristianCruz0309/proyectos-curso-javascript.git
synced 2026-08-15 10:58:00 +00:00
38 lines
691 B
CSS
38 lines
691 B
CSS
h1 {
|
|
font-family: 'Courier New', Courier, monospace;
|
|
color: brown;
|
|
text-shadow: 2px 2px 4px #ff1c1c;
|
|
font-size: 40px;
|
|
text-align: center;
|
|
}
|
|
|
|
button {
|
|
background-color: #7b3015;
|
|
border: none;
|
|
color: white;
|
|
padding: 15px 32px;
|
|
text-align: center;
|
|
text-decoration: none;
|
|
display: inline-block;
|
|
font-size: 16px;
|
|
margin: 4px 2px;
|
|
cursor: pointer;
|
|
border-radius: 5px;
|
|
}
|
|
|
|
ul {
|
|
list-style-type: none;
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
|
|
li {
|
|
background-color: #f1f1f1;
|
|
padding: 10px;
|
|
border-bottom: 1px solid #ccc;
|
|
text-align: center;
|
|
}
|
|
|
|
.textoCentrado {
|
|
text-align: center;
|
|
} |