64 lines
915 B
CSS
64 lines
915 B
CSS
body {
|
|
font-family: Arial, sans-serif;
|
|
width: 300px;
|
|
padding: 10px;
|
|
transition: background-color 0.3s ease;
|
|
}
|
|
|
|
.container {
|
|
text-align: center;
|
|
}
|
|
|
|
h1 {
|
|
font-size: 18px;
|
|
color: #333;
|
|
margin-bottom: 10px;
|
|
}
|
|
|
|
p {
|
|
font-size: 14px;
|
|
color: #666;
|
|
margin-bottom: 15px;
|
|
}
|
|
|
|
button {
|
|
background-color: #4285f4;
|
|
color: white;
|
|
border: none;
|
|
padding: 8px 16px;
|
|
border-radius: 4px;
|
|
cursor: pointer;
|
|
font-size: 14px;
|
|
transition: background-color 0.3s;
|
|
}
|
|
|
|
button:hover {
|
|
background-color: #3367d6;
|
|
}
|
|
|
|
#currentUrl {
|
|
margin-top: 15px;
|
|
font-style: italic;
|
|
word-break: break-all;
|
|
}
|
|
|
|
.message-container {
|
|
margin-top: 15px;
|
|
}
|
|
|
|
#userMessage {
|
|
width: 100%;
|
|
height: 60px;
|
|
padding: 8px;
|
|
margin-bottom: 10px;
|
|
border: 1px solid #ccc;
|
|
border-radius: 4px;
|
|
resize: none;
|
|
font-family: Arial, sans-serif;
|
|
}
|
|
|
|
.saved-message {
|
|
margin-top: 10px;
|
|
color: #4285f4;
|
|
font-weight: bold;
|
|
} |