mirror of
https://github.com/Akif9748/akf-forum.git
synced 2024-11-01 03:25:04 +03:00
39 lines
No EOL
607 B
CSS
39 lines
No EOL
607 B
CSS
.title {
|
|
color: var(--main);
|
|
font-weight: 700;
|
|
}
|
|
|
|
.content {
|
|
display: flex;
|
|
flex-direction: column;
|
|
box-shadow: 0 0 5px 0 var(--box-shadow);
|
|
max-width: 900px;
|
|
margin: 0 auto;
|
|
padding: 10px;
|
|
color: var(--anti);
|
|
}
|
|
|
|
.box {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
margin: 0 auto;
|
|
max-width: 800px;
|
|
width: 100%;
|
|
}
|
|
|
|
.box-title {
|
|
font-weight: 400;
|
|
color: var(--anti);
|
|
}
|
|
|
|
.box-value {
|
|
font-weight: 300;
|
|
background-color: var(--main);
|
|
color: white;
|
|
font-size: 14px;
|
|
padding: 4px;
|
|
border-radius: 5px;
|
|
min-width: 50px;
|
|
text-align: center;
|
|
} |