| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- body {
- width: 300px;
- padding: 15px;
- font-family: Arial, sans-serif;
- background-color: #f5f5f5;
- }
- .container {
- text-align: center;
- }
- h1 {
- font-size: 16px;
- color: #333;
- margin-bottom: 15px;
- }
- p {
- font-size: 13px;
- color: #666;
- margin: 10px 0;
- }
- button {
- background-color: #4285f4;
- color: white;
- border: none;
- padding: 10px 15px;
- text-align: center;
- text-decoration: none;
- display: inline-block;
- font-size: 14px;
- margin: 10px 0;
- cursor: pointer;
- border-radius: 4px;
- transition: background-color 0.3s;
- }
- button:hover {
- background-color: #3367d6;
- }
- #status {
- font-style: italic;
- min-height: 20px;
- }
|