115 lines
		
	
	
		
			1.8 KiB
		
	
	
	
		
			CSS
		
	
	
	
	
	
			
		
		
	
	
			115 lines
		
	
	
		
			1.8 KiB
		
	
	
	
		
			CSS
		
	
	
	
	
	
:root {
 | 
						|
  font-family: Inter, system-ui, Avenir, Helvetica, Arial, sans-serif;
 | 
						|
  line-height: 1.5;
 | 
						|
  font-weight: 400;
 | 
						|
  color-scheme: light dark;
 | 
						|
  background-color: #fff8e1;
 | 
						|
  color: #213547;
 | 
						|
}
 | 
						|
 | 
						|
body {
 | 
						|
  margin: 0;
 | 
						|
  min-width: 320px;
 | 
						|
  min-height: 100vh;
 | 
						|
}
 | 
						|
 | 
						|
#app {
 | 
						|
  max-width: 1280px;
 | 
						|
  margin: 0 auto;
 | 
						|
  padding: 2rem;
 | 
						|
}
 | 
						|
 | 
						|
h1 {
 | 
						|
  text-align: center;
 | 
						|
  color: #ff8f00;
 | 
						|
}
 | 
						|
 | 
						|
.package-list {
 | 
						|
  display: grid;
 | 
						|
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
 | 
						|
  gap: 1rem;
 | 
						|
  padding: 1rem;
 | 
						|
}
 | 
						|
 | 
						|
.package-card {
 | 
						|
  background: white;
 | 
						|
  border-radius: 8px;
 | 
						|
  padding: 1.5rem;
 | 
						|
  box-shadow: 0 2px 4px rgba(255, 143, 0, 0.1);
 | 
						|
  border: 1px solid #ffe0b2;
 | 
						|
}
 | 
						|
 | 
						|
.package-card h2 {
 | 
						|
  margin: 0 0 0.5rem 0;
 | 
						|
  color: #f57c00;
 | 
						|
}
 | 
						|
 | 
						|
.package-card .description {
 | 
						|
  color: #666;
 | 
						|
  margin-bottom: 1rem;
 | 
						|
  font-size: 0.9rem;
 | 
						|
  display: -webkit-box;
 | 
						|
  -webkit-line-clamp: 4;
 | 
						|
  -webkit-box-orient: vertical;
 | 
						|
  overflow: hidden;
 | 
						|
  text-overflow: ellipsis;
 | 
						|
  line-height: 1.5;
 | 
						|
  max-height: 6em;
 | 
						|
}
 | 
						|
 | 
						|
.package-info {
 | 
						|
  display: flex;
 | 
						|
  justify-content: space-between;
 | 
						|
  align-items: center;
 | 
						|
  margin-bottom: 1rem;
 | 
						|
  font-size: 0.9rem;
 | 
						|
  color: #666;
 | 
						|
}
 | 
						|
 | 
						|
.button {
 | 
						|
  padding: 0.5rem 1rem;
 | 
						|
  border-radius: 4px;
 | 
						|
  border: none;
 | 
						|
  cursor: pointer;
 | 
						|
  font-weight: 500;
 | 
						|
  transition: background-color 0.2s;
 | 
						|
}
 | 
						|
 | 
						|
.button-install {
 | 
						|
  background-color: #ffa000;
 | 
						|
  color: white;
 | 
						|
}
 | 
						|
 | 
						|
.button-update {
 | 
						|
  background-color: #ff8f00;
 | 
						|
  color: white;
 | 
						|
}
 | 
						|
 | 
						|
.button-reinstall {
 | 
						|
  background-color: #ffb300;
 | 
						|
  color: white;
 | 
						|
}
 | 
						|
 | 
						|
.button-uninstall {
 | 
						|
  background-color: #ff6f00;
 | 
						|
  color: white;
 | 
						|
}
 | 
						|
 | 
						|
.button:hover {
 | 
						|
  opacity: 0.9;
 | 
						|
}
 | 
						|
 | 
						|
.button:disabled {
 | 
						|
  background-color: #ffe0b2;
 | 
						|
  cursor: not-allowed;
 | 
						|
}
 | 
						|
 | 
						|
.error-message {
 | 
						|
  text-align: center;
 | 
						|
  color: #ff6f00;
 | 
						|
  padding: 2rem;
 | 
						|
  background: white;
 | 
						|
  border-radius: 8px;
 | 
						|
  box-shadow: 0 2px 4px rgba(255, 143, 0, 0.1);
 | 
						|
  grid-column: 1 / -1;
 | 
						|
} |