Update static/css/styles.css
Browse files- static/css/styles.css +70 -0
static/css/styles.css
CHANGED
|
@@ -3,50 +3,120 @@ body {
|
|
| 3 |
font-family: 'Bubblegum Sans', cursive;
|
| 4 |
color: #000;
|
| 5 |
text-align: center;
|
|
|
|
|
|
|
| 6 |
}
|
|
|
|
| 7 |
h1 {
|
| 8 |
color: #FFD700; /* Butter yellow */
|
|
|
|
| 9 |
}
|
|
|
|
| 10 |
nav {
|
| 11 |
background: #FFD700;
|
| 12 |
padding: 10px;
|
|
|
|
| 13 |
}
|
|
|
|
| 14 |
nav a {
|
| 15 |
margin: 0 15px;
|
| 16 |
color: #000;
|
| 17 |
text-decoration: none;
|
|
|
|
| 18 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 19 |
#chat-container {
|
| 20 |
width: 80%;
|
|
|
|
| 21 |
margin: 20px auto;
|
| 22 |
border: 2px solid #FFD700;
|
| 23 |
padding: 20px;
|
| 24 |
background: #fff;
|
|
|
|
|
|
|
| 25 |
}
|
|
|
|
| 26 |
#chat-messages {
|
| 27 |
height: 300px;
|
| 28 |
overflow-y: scroll;
|
| 29 |
margin-bottom: 20px;
|
| 30 |
border: 1px solid #ccc;
|
| 31 |
padding: 10px;
|
|
|
|
|
|
|
| 32 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 33 |
#chat-form {
|
| 34 |
display: flex;
|
| 35 |
justify-content: center;
|
|
|
|
| 36 |
}
|
|
|
|
| 37 |
#message-input {
|
| 38 |
width: 70%;
|
| 39 |
padding: 10px;
|
| 40 |
font-family: 'Bubblegum Sans', cursive;
|
|
|
|
|
|
|
| 41 |
}
|
|
|
|
| 42 |
button {
|
| 43 |
padding: 10px 20px;
|
| 44 |
background: #FFD700;
|
| 45 |
border: none;
|
|
|
|
| 46 |
cursor: pointer;
|
|
|
|
|
|
|
| 47 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 48 |
#comic-strip {
|
| 49 |
display: flex;
|
| 50 |
flex-wrap: wrap;
|
| 51 |
justify-content: center;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 52 |
}
|
|
|
|
| 3 |
font-family: 'Bubblegum Sans', cursive;
|
| 4 |
color: #000;
|
| 5 |
text-align: center;
|
| 6 |
+
margin: 0;
|
| 7 |
+
padding: 0;
|
| 8 |
}
|
| 9 |
+
|
| 10 |
h1 {
|
| 11 |
color: #FFD700; /* Butter yellow */
|
| 12 |
+
margin: 20px 0;
|
| 13 |
}
|
| 14 |
+
|
| 15 |
nav {
|
| 16 |
background: #FFD700;
|
| 17 |
padding: 10px;
|
| 18 |
+
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
|
| 19 |
}
|
| 20 |
+
|
| 21 |
nav a {
|
| 22 |
margin: 0 15px;
|
| 23 |
color: #000;
|
| 24 |
text-decoration: none;
|
| 25 |
+
font-size: 1.2em;
|
| 26 |
}
|
| 27 |
+
|
| 28 |
+
nav a:hover {
|
| 29 |
+
text-decoration: underline;
|
| 30 |
+
}
|
| 31 |
+
|
| 32 |
+
.container {
|
| 33 |
+
padding: 20px;
|
| 34 |
+
}
|
| 35 |
+
|
| 36 |
#chat-container {
|
| 37 |
width: 80%;
|
| 38 |
+
max-width: 600px;
|
| 39 |
margin: 20px auto;
|
| 40 |
border: 2px solid #FFD700;
|
| 41 |
padding: 20px;
|
| 42 |
background: #fff;
|
| 43 |
+
border-radius: 10px;
|
| 44 |
+
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
|
| 45 |
}
|
| 46 |
+
|
| 47 |
#chat-messages {
|
| 48 |
height: 300px;
|
| 49 |
overflow-y: scroll;
|
| 50 |
margin-bottom: 20px;
|
| 51 |
border: 1px solid #ccc;
|
| 52 |
padding: 10px;
|
| 53 |
+
background: #f9f9f9;
|
| 54 |
+
border-radius: 5px;
|
| 55 |
}
|
| 56 |
+
|
| 57 |
+
#chat-messages p {
|
| 58 |
+
margin: 5px 0;
|
| 59 |
+
}
|
| 60 |
+
|
| 61 |
#chat-form {
|
| 62 |
display: flex;
|
| 63 |
justify-content: center;
|
| 64 |
+
gap: 10px;
|
| 65 |
}
|
| 66 |
+
|
| 67 |
#message-input {
|
| 68 |
width: 70%;
|
| 69 |
padding: 10px;
|
| 70 |
font-family: 'Bubblegum Sans', cursive;
|
| 71 |
+
border: 1px solid #ccc;
|
| 72 |
+
border-radius: 5px;
|
| 73 |
}
|
| 74 |
+
|
| 75 |
button {
|
| 76 |
padding: 10px 20px;
|
| 77 |
background: #FFD700;
|
| 78 |
border: none;
|
| 79 |
+
border-radius: 5px;
|
| 80 |
cursor: pointer;
|
| 81 |
+
font-family: 'Bubblegum Sans', cursive;
|
| 82 |
+
font-size: 1em;
|
| 83 |
}
|
| 84 |
+
|
| 85 |
+
button:hover {
|
| 86 |
+
background: #FFC107;
|
| 87 |
+
}
|
| 88 |
+
|
| 89 |
#comic-strip {
|
| 90 |
display: flex;
|
| 91 |
flex-wrap: wrap;
|
| 92 |
justify-content: center;
|
| 93 |
+
gap: 10px;
|
| 94 |
+
margin-top: 20px;
|
| 95 |
+
}
|
| 96 |
+
|
| 97 |
+
#comic-strip img {
|
| 98 |
+
max-width: 200px;
|
| 99 |
+
border-radius: 5px;
|
| 100 |
+
box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
|
| 101 |
+
}
|
| 102 |
+
|
| 103 |
+
#countdown {
|
| 104 |
+
font-size: 1.2em;
|
| 105 |
+
margin: 20px 0;
|
| 106 |
+
color: #FFD700;
|
| 107 |
+
text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
|
| 108 |
+
}
|
| 109 |
+
|
| 110 |
+
#birthday-image {
|
| 111 |
+
max-width: 300px;
|
| 112 |
+
border-radius: 10px;
|
| 113 |
+
box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
|
| 114 |
+
margin: 20px 0;
|
| 115 |
+
}
|
| 116 |
+
|
| 117 |
+
#birthday-message {
|
| 118 |
+
font-size: 1.2em;
|
| 119 |
+
color: #FFD700;
|
| 120 |
+
text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
|
| 121 |
+
margin: 20px 0;
|
| 122 |
}
|