mirror of
https://github.com/ragestudio/comty.git
synced 2025-06-10 02:54:15 +00:00
93 lines
1.7 KiB
Plaintext
Executable File
93 lines
1.7 KiB
Plaintext
Executable File
.about_app {
|
|
display: flex;
|
|
flex-direction: column;
|
|
|
|
width: 100%;
|
|
|
|
padding: 0 20px 20px 20px;
|
|
|
|
background-color: var(--background-color-accent);
|
|
color: var(--text-color);
|
|
|
|
border-radius: 12px;
|
|
|
|
.header {
|
|
display: flex;
|
|
flex-direction: row;
|
|
|
|
justify-content: space-between;
|
|
align-self: center;
|
|
|
|
width: 100%;
|
|
|
|
margin-bottom: 20px;
|
|
|
|
padding: 20px 0;
|
|
border-bottom: 1px solid var(--border-color);
|
|
|
|
.branding {
|
|
display: flex;
|
|
flex-direction: row;
|
|
|
|
align-items: center;
|
|
|
|
.logo {
|
|
width: 60px;
|
|
height: 100%;
|
|
|
|
margin-right: 20px;
|
|
|
|
img {
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|
|
}
|
|
|
|
.texts {
|
|
display: flex;
|
|
flex-direction: column;
|
|
|
|
}
|
|
|
|
h1,
|
|
h2,
|
|
h3 {
|
|
height: fit-content;
|
|
line-height: 24px;
|
|
}
|
|
|
|
span {
|
|
height: fit-content;
|
|
color: var(--background-color-contrast);
|
|
font-size: 10px;
|
|
}
|
|
}
|
|
}
|
|
|
|
.group {
|
|
display: inline-flex;
|
|
|
|
flex-direction: column;
|
|
justify-content: center;
|
|
|
|
margin-bottom: 10px;
|
|
|
|
.field {
|
|
display: inline-flex;
|
|
flex-direction: column;
|
|
|
|
margin-bottom: 10px;
|
|
|
|
font-size: 0.9rem;
|
|
|
|
.value {
|
|
font-size: 0.8rem;
|
|
|
|
display: inline-flex;
|
|
flex-direction: row;
|
|
|
|
margin-left: 10px;
|
|
}
|
|
}
|
|
}
|
|
} |