CoolFace
Apppublic

GodsDevProject/FOIA_Doc_Search

sourceHugging Facemitupdated 9mo agoView on Hugging Face
1likes
style.css75 linesDownload Raw Back to root
1/* Sticky tabs on mobile */2.tabs {3  position: sticky;4  top: 0;5  background: #fff;6  z-index: 999;7}8 9/* Search button */10.search-btn {11  border-radius: 999px !important;12  background: linear-gradient(135deg,#1e88e5,#1565c0) !important;13  color: white !important;14  font-weight: 600;15}16 17/* Result cards */18.result-card {19  border: 1px solid #d0d0d0;20  border-radius: 14px;21  padding: 14px;22  margin-bottom: 14px;23}24 25.result-header {26  display: flex;27  justify-content: space-between;28  align-items: center;29}30 31.ask-ai-btn {32  background: #1e88e5;33  color: white;34  border: none;35  border-radius: 999px;36  padding: 6px 14px;37  font-size: 0.8rem;38}39 40.ask-ai-btn:disabled {41  background: #aaa;42  cursor: not-allowed;43}44 45.result-actions a {46  margin-right: 12px;47  color: #1e88e5;48  text-decoration: none;49  font-weight: 500;50}51 52/* Tooltip */53.tooltip {54  margin-top: 8px;55  font-size: 0.75rem;56  color: #555;57  position: relative;58}59 60.tooltiptext {61  visibility: hidden;62  background-color: #333;63  color: #fff;64  padding: 8px;65  border-radius: 6px;66  position: absolute;67  z-index: 1;68  width: 260px;69  bottom: 125%;70  left: 0;71}72 73.tooltip:hover .tooltiptext {74  visibility: visible;75}