31 lines
450 B
CSS
31 lines
450 B
CSS
/* Luca.css */
|
|
.programmer-space {
|
|
padding: 20px;
|
|
margin: 10px;
|
|
border-radius: 8px;
|
|
color: #fff;
|
|
}
|
|
|
|
.luca {
|
|
background-color: #4a90e2; /* Blue */
|
|
}
|
|
|
|
.click-button {
|
|
padding: 10px 20px;
|
|
margin-top: 10px;
|
|
border: none;
|
|
border-radius: 4px;
|
|
background-color: #fff;
|
|
color: #4a90e2;
|
|
cursor: pointer;
|
|
font-size: 16px;
|
|
}
|
|
|
|
.click-button:hover {
|
|
background-color: #e3e3e3;
|
|
}
|
|
|
|
.lorem-ipsum {
|
|
margin-top: 20px;
|
|
font-size: 14px;
|
|
}
|