og/assets/style.css

114 lines
1.4 KiB
CSS
Raw Normal View History

2023-08-02 18:37:47 -04:00
p {
2023-08-02 19:56:35 -04:00
margin: 0px;
2023-08-02 22:00:54 -04:00
}
.wrapper {
background-color: #1b171f;
display: flex;
align-items: center;
flex-direction: column;
width: 1200px;
height: 600px;
2023-08-02 18:37:47 -04:00
}
.main {
color: #ffffff;
display: flex;
2023-08-02 22:00:54 -04:00
flex-direction: column;
2023-08-02 22:21:14 -04:00
gap: 2rem;
2023-08-02 18:37:47 -04:00
justify-content: center;
align-items: center;
2023-08-02 22:00:54 -04:00
width: 1050px;
2023-08-02 18:37:47 -04:00
height: 600px;
}
2023-08-02 22:00:54 -04:00
.has-languages .main {
height: 576px;
}
2023-08-02 18:37:47 -04:00
.contents {
display: flex;
2023-08-02 22:00:54 -04:00
width: 100%;
2023-08-02 18:37:47 -04:00
}
.info {
display: flex;
flex-direction: column;
justify-content: center;
gap: 10px;
2023-08-02 22:21:14 -04:00
width: 80%;
2023-08-02 18:37:47 -04:00
}
.graphics {
display: flex;
justify-content: flex-end;
align-items: flex-start;
2023-08-02 22:21:14 -04:00
width: 20%;
2023-08-02 18:37:47 -04:00
}
.graphics > img {
border-radius: 100%;
width: 120px;
height: 120px;
}
2023-08-02 19:56:35 -04:00
2023-08-02 22:21:14 -04:00
.issue .title {
font-weight: 800;
font-size: 4.5rem;
line-height: 1.2em;
display: flex;
column-gap: 0.25em;
line-height: 1em;
flex-wrap: wrap;
}
2023-08-02 22:00:54 -04:00
.repo .author {
2023-08-02 19:56:35 -04:00
display: flex;
align-items: center;
gap: 0.75rem;
font-size: 2.5rem;
color: #bdb0cc;
}
2023-08-02 22:00:54 -04:00
.repo .author .username {
2023-08-02 19:56:35 -04:00
font-size: 1.75rem;
color: #776d83;
}
.repo .repo-name {
font-weight: 800;
font-size: 4.5rem;
line-height: 1.2em;
}
2023-08-02 22:00:54 -04:00
.languages {
width: 100%;
display: flex;
height: 24px;
}
.language {
height: 100%;
}
2023-08-02 22:03:37 -04:00
.info-line {
display: flex;
font-size: 1.75rem;
color: #9a8fa7;
gap: 0.5em;
align-items: center;
width: 100%;
}
.info-line .author {
color: #ffffff;
font-weight: 700;
}
.info-line .avatar {
width: 48px;
height: 48px;
margin: 0;
border-radius: 100%;
}