-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
18 lines (15 loc) · 1.27 KB
/
style.css
File metadata and controls
18 lines (15 loc) · 1.27 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
body { font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; background: #f0f2f5; padding: 20px; }
.container { max-width: 1000px; margin: auto; }
h1 { text-align: center; color: #1e293b; }
.search-box, .filter-section { background: white; padding: 20px; border-radius: 12px; margin-bottom: 20px; box-shadow: 0 2px 10px rgba(0,0,0,0.1); }
input, select { padding: 10px; border: 1px solid #ddd; border-radius: 6px; width: 250px; }
button { padding: 10px 20px; background: #3b82f6; color: white; border: none; border-radius: 6px; cursor: pointer; }
.terrain-filters { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 15px; }
.terrain { background: #e2e8f0; color: #475569; }
.terrain.active { background: #3b82f6; color: white; }
.results-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 20px; }
.pet-card { background: white; padding: 20px; border-radius: 12px; box-shadow: 0 4px 6px rgba(0,0,0,0.05); border-left: 5px solid #3b82f6; }
.stats-bar { font-size: 0.9em; color: #64748b; margin: 10px 0; }
.tag { display: inline-block; padding: 4px 10px; border-radius: 20px; font-size: 0.8em; margin: 3px; font-weight: bold; }
.tag-liked { background: #dcfce7; color: #166534; }
.tag-disliked { background: #fee2e2; color: #991b1b; }