feat: ixvd/hub integration

This commit is contained in:
Strix 2023-10-16 01:36:02 +02:00
parent 7c44053eae
commit d692c61590
No known key found for this signature in database
GPG key ID: 49B2E37B8915B774
7 changed files with 177 additions and 16 deletions

View file

@ -11,15 +11,19 @@ body {
padding: 0;
height: 100%;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
background-color: #f0f0f0;
}
main {
body > * {
width: 50%;
padding: 1rem 2rem;
}
main {
border: 1px solid #ddd;
border-radius: 4px;
background-color: #fff;
}
@ -37,6 +41,62 @@ main {
text-align: right;
}
#issues {
display: flex;
flex-direction: column;
background: #555555;
color: #fff;
transition: all .3s ease-in-out;
/*box-shadow: inset 0 -10px 10px rgba(0,0,0,.3);*/
}
#issues > * {
margin: 0;
padding: 0;
}
#issues-holder {
display: flex;
flex-direction: column;
}
#issues-holder .issue {
display: grid;
grid-template-areas: "issue-details issue-data";
grid-template-columns: 8fr 2fr;
padding: 5px 0;
}
#issues-holder .issue + .issue {
border-top: 1px solid #777777;
}
#issues-holder .issue .issue-details {
grid-area: issue-details;
display: flex;
flex-direction: column;
}
#issues-holder .issue .issue-details .issue-title {
font-size: 1.2em;
font-weight: bold;
}
#issues-holder .issue .issue-data {
grid-area: issue-data;
display: grid;
align-content: start;
}
#issues-holder .issue .issue-data > span {
display: flex;
justify-content: right;
}
#issues-holder .issue .issue-data .issue-status {
font-weight: bold;
}
a {
color: #000;
transition: 0.5s all;
@ -73,4 +133,8 @@ a:hover {
#links a {
margin-bottom: 0.5rem;
}
[hidden] {
display: none !important;
}