Untitled
unknown
plain_text
a year ago
1.4 kB
4
Indexable
/* DashboardStyles.css */ /* General styles */ body { margin: 0; font-family: 'Arial', sans-serif; background-color: #f4f4f4; } /* Header styles */ .dash { background-color: #2c3e50; /* Dark blue-gray */ color: white; padding: 10px; text-align: center; box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2); } nav { display: flex; justify-content: space-between; } /* Left side navigation */ .nav-left { padding: 10px; text-align: left; } /* Right side navigation */ .nav-right { padding: 10px; text-align: right; } /* Welcome message */ .nav-right p { margin: 0; font-size: 1.2em; } /* Links in navigation */ .nav-right a { color: #3498db; /* Blue */ text-decoration: none; margin: 5px; display: block; transition: color 0.3s ease-in-out; } .nav-right a:hover { color: #2980b9; /* Darker blue on hover */ } /* File input styling */ .nav-right input[type="file"] { margin: 10px 0; padding: 8px; background-color: #3498db; color: white; border: none; cursor: pointer; } /* Weather App heading */ h1 { text-align: center; color: #2c3e50; /* Dark blue-gray */ } /* Weather Search button */ button { display: block; margin: 20px auto; padding: 10px; background-color: #27ae60; /* Green */ color: white; border: none; cursor: pointer; transition: background-color 0.3s ease-in-out; } button:hover { background-color: #219d54; /* Darker green on hover */ }
Editor is loading...
Leave a Comment