home-app/src/styles/contents.css

82 lines
1.3 KiB
CSS
Raw Normal View History

2022-04-29 14:52:00 +00:00
contents {
display: flex;
2022-04-30 13:12:41 +00:00
position: relative;
2022-05-02 14:52:08 +00:00
top: calc(37.5vh - 0.5rem);
2022-04-29 14:52:00 +00:00
2022-04-30 13:12:41 +00:00
right: 0vh;
left: 0vh;
2022-04-29 14:52:00 +00:00
2022-04-30 13:12:41 +00:00
justify-content: center;
align-items: flex-start;
flex-direction: column;
flex-wrap: nowrap;
2022-04-29 14:52:00 +00:00
}
contents > group {
display: flex;
margin: 2.5vh 0;
2022-04-30 13:12:41 +00:00
flex-direction: row;
flex-wrap: wrap;
justify-content: space-between;
align-items: stretch;
2022-04-29 14:52:00 +00:00
}
card {
2022-04-30 13:12:41 +00:00
display: flex;
2022-04-29 14:52:00 +00:00
background-color: var(--box-color);
padding: 2rem;
min-height: 3rem;
border-radius: 10px;
flex-grow: 1;
margin-top: 1rem;
margin-right: 0.5rem;
2022-04-30 13:12:41 +00:00
margin-left: 0.5rem;
align-content: center;
justify-content: center;
align-items: center;
backdrop-filter: blur(15px);
2022-04-29 14:52:00 +00:00
}
card > a > img {
max-height: 48px;
2022-05-01 17:03:45 +00:00
width: 48px;
2022-04-29 14:52:00 +00:00
vertical-align: middle;
}
group#friend > card > a > img {
max-height: 48px;
2022-04-30 13:12:41 +00:00
max-width: 48px;
2022-04-29 14:52:00 +00:00
border-radius: 100px;
}
group#footer {
2022-04-30 13:12:41 +00:00
display: block;
margin: 2rem 0.5rem;
2022-04-29 14:52:00 +00:00
align-self: flex-start;
color: var(--font-color-lighter);
font-size: calc(var(--font-size-description) - 0.4rem);
}
group#footer > * {
display: block;
}
@media (prefers-color-scheme: dark) {
2022-04-30 13:12:41 +00:00
card#github > a > img {
filter: invert(100%);
}
2022-04-29 14:52:00 +00:00
}
2022-04-29 15:32:11 +00:00
2022-04-30 13:12:41 +00:00
@media screen and (max-width: 1024px) {
contents {
2022-05-02 14:52:08 +00:00
top: calc(32.5vh - 0.5rem);
2022-04-30 13:12:41 +00:00
}
}
2022-04-29 15:32:11 +00:00
2022-05-02 14:52:08 +00:00
@media screen and (max-width: 530px) {
2022-04-29 15:32:11 +00:00
contents {
2022-04-30 13:12:41 +00:00
top: 20vh;
2022-04-29 15:32:11 +00:00
}
2022-04-30 13:12:41 +00:00
}