63 lines
780 B
CSS
63 lines
780 B
CSS
* {
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
p {
|
|
margin: 0px;
|
|
margin-block: 0px;
|
|
}
|
|
|
|
.main {
|
|
color: #ffffff;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
background-color: #1b171f;
|
|
width: 1200px;
|
|
height: 600px;
|
|
}
|
|
|
|
.contents {
|
|
display: flex;
|
|
}
|
|
|
|
.info {
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: center;
|
|
width: 800px;
|
|
gap: 10px;
|
|
}
|
|
|
|
.graphics {
|
|
display: flex;
|
|
justify-content: flex-end;
|
|
align-items: flex-start;
|
|
width: 240px;
|
|
}
|
|
|
|
.graphics > img {
|
|
border-radius: 100%;
|
|
width: 120px;
|
|
height: 120px;
|
|
}
|
|
|
|
.author {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 0.75rem;
|
|
font-size: 2.5rem;
|
|
color: #bdb0cc;
|
|
}
|
|
|
|
.author .username {
|
|
font-size: 1.75rem;
|
|
color: #776d83;
|
|
}
|
|
|
|
.repo .repo-name {
|
|
font-weight: 800;
|
|
font-size: 4.5rem;
|
|
line-height: 1.2em;
|
|
}
|