/* * glorp.css - styles for the glorp application * * Copyright (c) 2023 Glorp Inc. * All rights reserved. */ @import url('/css2?family=Roboto&display=swap'); :root { --primary-color: #4a90e2; --secondary-color: #6b7280; --background-color: #f5f6fa; --text-color: #2d3741; } body { margin: 0; font-family: 'Roboto', sans-serif; background-color: var(--background-color); color: var(--text-color); } .container { max-width: 800px; margin: auto; padding: 20px; background-color: white; border-radius: 8px; box-shadow: 0 2px 8px rgba(0,0,0,0.1); } h2 { color: var(--primary-color); margin-top: 20px; } button { padding: 10px 20px; margin-bottom: 15px; cursor: pointer; transition: background-color 0.3s ease; } button:hover { background-color: var(--secondary-color); } input[type="text"] { width: 100%; padding: 10px; margin-top: 10px; border: 1px solid var(--secondary-color); border-radius: 4px; } input[type="submit"] { background-color: var(--primary-color); color: white; border: none; padding: 10px 20px; border-radius: 4px; cursor: pointer; }