Spaces:
Paused
Paused
/* Container for the sources list */ | |
.sources-container { | |
display: flex ; | |
flex-direction: column ; | |
gap: 0.65rem ; | |
padding: 0 ; | |
} | |
/* Styling for the sources loading text */ | |
.loading-sources { | |
padding: 1rem ; | |
} | |
/* Styling for each Card component */ | |
.source-card { | |
background-color: #3e3e3eec ; | |
border-radius: 1rem ; | |
color: #fff ; | |
cursor: pointer ; | |
} | |
.source-card:hover { | |
background-color: #262626e5 ; | |
} | |
/* Styling for the CardContent title (header) - reduced text size slightly */ | |
.source-title { | |
color: #fff ; | |
margin-top: -0.5rem ; | |
margin-bottom: 0.4rem ; | |
font-size: 1rem ; | |
} | |
/* Styling for the link row (icon, domain, bullet, serial number) */ | |
.source-link { | |
display: flex ; | |
align-items: center ; | |
font-size: 0.8rem ; | |
color: #c1c1c1 ; | |
margin-bottom: 0.5rem ; | |
} | |
/* Styling for the favicon icon - reduced size and increased brightness */ | |
.source-icon { | |
width: 0.88rem ; | |
height: 0.88rem ; | |
margin-right: 0.3rem ; | |
filter: brightness(1.2) ; /* Makes the icon brighter */ | |
} | |
/* Styling for the domain text */ | |
.source-domain { | |
vertical-align: middle ; | |
} | |
/* Styling for the separator bullet */ | |
.separator { | |
margin: 0 0.3rem ; | |
} | |
/* Styling for the serial number */ | |
.source-serial { | |
font-size: 0.8rem ; | |
color: #c1c1c1 ; | |
} | |
/* Styling for the CardContent description */ | |
.source-description { | |
color: #e8e8e8 ; | |
margin-bottom: -0.65rem ; | |
} |