Spaces:
Sleeping
Sleeping
File size: 2,101 Bytes
ec14c0e |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 |
body {
font-family: Arial, sans-serif;
background-color: #f0f0f0;
margin: 0;
padding: 0;
display: flex;
justify-content: center;
}
.container {
background-color: #ffffff;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
border-radius: 8px;
width: 80%;
max-width: 1000px;
padding: 20px;
box-sizing: border-box;
}
.header {
text-align: center;
margin-bottom: 20px;
}
.search-section {
margin-bottom: 20px;
}
.search-section input[type="text"] {
width: calc(100% - 20px);
padding: 10px;
border: 1px solid #ddd;
border-radius: 4px;
margin-bottom: 10px;
box-sizing: border-box;
box-shadow: 0px 10px 30px 0px rgba(0,0,0,0.1);
border-color: chocolate;
}
.buttons {
display: flex;
justify-content: center;
}
.search-btn {
padding: 10px 20px;
border: none;
border-radius: 4px;
background-color: #007bff;
color: white;
cursor: pointer;
margin-right: 20px;
}
.search-btn:active {
background-color: #0056b3;
}
.reset-btn {
padding: 10px 20px;
border: none;
border-radius: 4px;
background-color: #dc3545;
color: white;
cursor: pointer;
}
.reset-btn:active {
background-color: #b21f2d;
}
.content {
display: flex;
justify-content: space-between;
}
.cards {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 20px;
width: 70%;
}
.card {
background-color: #f9f9f9;
border-radius: 8px;
padding: 20px;
text-align: center;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.card img {
width: 150px;
height: 150px;
object-fit: cover;
border-radius: 4px;
}
.searches {
width: 25%;
padding-left: 20px;
border-left: 2px solid #f0f0f0;
overflow-y: auto;
max-height: 400px; /* Adjust this height as needed */
}
.searches h3 {
margin-top: 0;
}
.search-item {
background-color: #e9e9e9;
padding: 10px;
border-radius: 4px;
margin-bottom: 10px;
display: flex;
align-items: center;
}
.search-item input[type="checkbox"] {
margin-right: 10px;
} |