akf-forum/public/css/user.css

39 lines
548 B
CSS
Raw Normal View History

2022-08-28 18:11:12 +03:00
.title {
2022-08-31 18:11:54 +03:00
color: var(--main);
2022-08-28 18:11:12 +03:00
font-weight: 700;
}
.content {
display: flex;
flex-direction: column;
2022-08-31 18:11:54 +03:00
box-shadow: 0 0 5px 0 var(--box-shadow);
max-width: 900px;
margin: 0 auto;
padding: 10px;
2022-08-28 18:11:12 +03:00
}
.box {
display: flex;
align-items: center;
justify-content: space-between;
margin: 0 auto;
max-width: 800px;
width: 100%;
2022-08-28 18:11:12 +03:00
}
2022-08-28 20:04:54 +03:00
.box-title{
2022-09-08 15:06:31 +03:00
font-weight: 400;
2022-08-28 20:04:54 +03:00
}
.box-value {
2022-09-08 15:06:31 +03:00
font-weight: 300;
background-color: var(--main);
color: white;
font-size: 14px;
padding: 4px;
border-radius: 5px;
min-width: 50px;
text-align: center;
}