1
0
forked from sent/waves
waves-fork/public/assets/css/a.css
2025-04-22 23:00:19 -05:00

133 lines
2.3 KiB
CSS

.apps-page {
padding: 100px 20px 40px;
text-align: center;
position: relative;
}
.apps-page h1 {
animation: fadeIn 2s ease;
font-size: 2.5rem;
margin-bottom: 20px;
color: #fff;
}
.apps-grid {
display: flex;
flex-wrap: wrap;
justify-content: center;
align-items: flex-start;
align-content: flex-start;
gap: 20px;
max-width: 80%;
margin: 0 auto;
}
.content.apps-page {
display: flex;
flex-direction: column;
align-items: center;
text-align: center;
}
.app-card {
background-color: #08080894;
border-radius: 25px;
padding: 15px 20px;
cursor: pointer;
user-select: none;
text-align: center;
border: 1px solid #ffffff21;
backdrop-filter: blur(10px);
transition: all 0.3s ease;
width: 180px;
height: 250px;
display: flex;
flex-direction: column;
justify-content: space-between;
align-items: center;
overflow: hidden;
animation: fadeIn 2s ease;
}
.app-card img {
width: 100%;
height: 200px;
object-fit: cover;
border-radius: 10px;
filter: brightness(0.7);
transition: all 0.3s ease;
}
.app-card:hover img {
filter: brightness(1);
}
.app-card:hover {
background-color: #333333;
}
.app-card h2 {
font-size: 1rem;
margin: 10px 0;
color: #fff;
}
.app-card p {
font-size: 1rem;
color: #ccc;
}
.apps-search-bar {
text-align: center;
margin-top: 20px;
margin-bottom: 20px;
color: #a8a8a8;
animation: fadeIn 2s ease;
position: relative;
}
#appSearchInput {
padding: 14px 30px;
border: 1px solid #ffffff1a;
background-image: url('/assets/images/icons/search.png');
background-size: 35px 35px;
background-position: 10px center;
background-repeat: no-repeat;
padding-left: 45px;
border-radius: 20px;
background-color: #08080894;
outline: none;
color: #a8a8a8;
font-size: 14px;
width: 400px;
max-width: 100%;
transition: all 0.3s ease;
}
#appSearchInput:focus,
#appSearchInput:hover {
border: 1px solid #ffffff69;
}
#appSearchInput::placeholder {
color: #a8a8a8;
}
.shortcut-indicator-4 {
position: absolute;
top: 50%;
left: 50%;
transform: translate(calc(-50% + 195px), -50%);
font-size: 12px;
font-weight: 500;
color: #000000;
background-color: #c4c4c4;
padding: 2px 6px;
border-radius: 7px;
cursor: pointer;
transition: all 0.3s ease;
}
.shortcut-indicator-4:hover {
background-color: #ffffff;
}