mirror of
https://github.com/LiteyukiStudio/LiteyukiBot.git
synced 2024-11-11 06:27:23 +08:00
95 lines
1.7 KiB
CSS
95 lines
1.7 KiB
CSS
:root {
|
|
--vp-c-brand-1: #149ef8;
|
|
--vp-c-brand-2: #0434ad;
|
|
--vp-home-hero-name-color: transparent;
|
|
--vp-home-hero-name-background: -webkit-linear-gradient(120deg, #34a3fe 30%, #8d44ff);
|
|
|
|
--vp-home-hero-image-background-image: linear-gradient(-45deg, #d0e9ff 50%, #a2d8f4 50%);
|
|
--vp-home-hero-image-filter: blur(44px);
|
|
|
|
--vp-c-gray-1: #eee;
|
|
--vp-c-gray-2: #aaa;
|
|
--border-radius-1: 10px;
|
|
--border-radius-2: 20px;
|
|
--border-radius-3: 40px;
|
|
|
|
|
|
}
|
|
|
|
.dark {
|
|
--vp-home-hero-image-background-image: linear-gradient(-45deg, #004785 50%, #0374ad 50%);
|
|
--vp-c-gray-1: #333;
|
|
--vp-c-gray-2: #666;
|
|
}
|
|
|
|
.tab-buttons {
|
|
padding: 7px;
|
|
flex: 1;
|
|
display: flex;
|
|
justify-content: flex-start;
|
|
height: 60%;
|
|
align-items: center;
|
|
}
|
|
|
|
|
|
.tab-title {
|
|
text-align: center;
|
|
justify-content: center;
|
|
flex: 1;
|
|
}
|
|
|
|
.item-search-box {
|
|
border-radius: 100px;
|
|
width: 80%;
|
|
padding: 10px;
|
|
margin: 10px 0;
|
|
border: 1px solid #ccc;
|
|
}
|
|
|
|
.search-box-div {
|
|
display: flex;
|
|
justify-content: space-around;
|
|
margin: 10px 0;
|
|
}
|
|
|
|
.item-search-box {
|
|
width: 80%;
|
|
}
|
|
|
|
.item-card {
|
|
position: relative;
|
|
border-radius: 15px;
|
|
background-color: var(--vp-c-gray-1);
|
|
height: 160px;
|
|
padding: 16px;
|
|
margin: 10px;
|
|
box-sizing: border-box;
|
|
transition: background 0.3s ease;
|
|
}
|
|
|
|
.item-name {
|
|
font-size: 20px;
|
|
margin-bottom: 10px;
|
|
}
|
|
|
|
.item-description {
|
|
color: var(--vp-c-gray-2);
|
|
font-size: 13px;
|
|
white-space: pre-wrap;
|
|
}
|
|
|
|
.author-info {
|
|
display: flex;
|
|
justify-content: left;
|
|
align-items: center;
|
|
}
|
|
|
|
.author-name {
|
|
font-size: 15px;
|
|
font-weight: normal;
|
|
}
|
|
|
|
.avatar {
|
|
border-radius: 50%;
|
|
margin: 0 10px;
|
|
} |