Create default.css

This commit is contained in:
deepend-tildeclub
2023-09-03 19:14:16 -06:00
committed by GitHub
parent ac9a03aebf
commit 017756bb6e

30
guestbook/default.css Normal file
View File

@@ -0,0 +1,30 @@
/* Default styles */
body {
background-color: #FFF8DC;
font-family: "Comic Sans MS";
font-size: 16px;
padding: 20px;
}
.entry {
background-color: #f7f7f7;
padding: 15px;
margin-bottom: 20px;
border-radius: 5px;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.entry-name {
font-weight: bold;
font-size: 1.1em;
}
.entry-email {
font-style: italic;
color: #888;
}
.entry-message {
margin-top: 10px;
font-size: 1.1em;
}