.dashboard {
display:grid;
grid-template-columns: 180px 1fr;
}
.tabs-list{
display: flex;
flex-direction: column;
margin: 0;
padding: 0;
gap: 15px;
}
.active{
align-self: flex-end;
}
.content {
display: flex;
flex-direction: column;
align-items: center;
padding: 20px 30px;
width: 280px;
}
.author{
order: -2;
align-self: flex-start;
margin-bottom: 15px;
}
.image{
max-width: 100%;
height: auto;
margin-bottom: 15px;
order: -1;
}
.title{
margin-top: 0;
margin-bottom: 5px;
}
.message{
margin-top: 0;
margin-bottom: 5px;
}
.reply-link{
margin-top: 15px;
}
потому что это второй класс, у общего класса .tab
класс .tab действует на все элементы под этим классом, а класс .active только для определенного элемента.
.tabs-list{
display:flex;
flex-direction:column;
margin:0;
padding:0;
width:180px;
}
.active{
align-self:flex-end;
}
.tab:not(:last-child){
margin-bottom:15px;
}
.content{
display:flex;
flex-direction:column;
width:280px;
padding:20px 30px;
}
.author{
margin-bottom:15px;
order:0
}
.image{
order:1;
width:100%;
height:auto;
margin-bottom:15px;
}
.title{
margin:0;
margin-bottom:5px;
align-self:center;
order:2;
}
.message{
margin-top:0;
margin-bottom:20px;
order:3;
}
.reply-link{
align-self:center;
order:4;
margin-bottom:0;
}
.tabs-list {
width: 180px;
margin: 0;
padding: 0;
display: flex;
flex-direction: column;
}
.tab {
margin-bottom: 15px;
align-self: flex-start;
}
.tab:last-child {
margin-bottom: 0;
}
.active {
align-self: flex-end;
}
.content {
display: flex;
width: 280px;
padding: 20px 30px;
flex-direction: column;
}
.image {
align-self: center;
max-width: 100%;
height: auto;
order: 0;
margin-bottom: 15px;
}
.author {
align-self: flex-start;
order: -1;
margin-bottom: 15px;
}
.title {
order: 1;
align-self: center;
margin-bottom: 5px;
margin-top: 0;
}
.message {
order: 2;
margin-bottom: 20px;
margin-top: 0;
}
.reply-link {
align-self: center;
order: 3;
margin-top: 0;
}
Quark
15.Январь.2022 15:14:58
26
.tabs-list {
display:flex;
flex-direction:column;
width:180px;
margin:0;
padding:0;
gap:15px;
}
.active {
margin-left:auto;
}
.content {
display:flex;
width:280px;
padding:20px 30px;
flex-direction:column;
align-items:center;
}
.image {
max-width:100%;
height:auto;
order:-1;
margin-bottom:15px;
}
.author {
order:-1;
margin-right:auto;
margin-bottom:15px;
}
h2 {
margin:0 0 5px;
}
.message {
margin:0 0 20px;
}
.tabs-list {
display: flex;
flex-direction: column;
width: 180px;
margin: 0;
padding: 0;
}
.tab {
margin-bottom: 15px;
}
.tab:last-child {
margin: 0;
}
.active {
align-self: flex-end;
}
.content {
display: flex;
flex-direction: column;
width: 280px;
align-items: center;
padding: 20px 30px 20px 30px;
}
.author {
order: -1;
align-self: flex-start;
margin: 0 0 15px 0;
}
.image {
order: -1;
max-width: 100%;
height: auto;
margin: 0 0 15px 0;
}
.message {
margin: 0 0 20px 0;
}
.title {;
margin: 0 0 5px 0;
}
SvF
19.Сентябрь.2022 17:26:29
28
на 100%
.tabs-list{
margin:0;
padding:0;
width:180px;
display:flex;
flex-direction: column;
align-self:flex-start;
}
.tab{
margin-bottom:15px;
}
.tab:last-child {
margin-bottom:0;
}
.active{
align-self:flex-end;
}
.content{
display:flex;
flex-direction:column;
width:280px;
padding:20px 30px;
margin:0;
}
.author{
margin:0;
align-self:flex-start;
order:-1;
margin-bottom:15px;
}
.image{
margin:0;
max-width: 100%;
height: auto;
margin-bottom:15px;
order:1;
}
.title{
margin:0;
align-self:center;
margin-bottom:5px;
order:2;
}
.message{
margin:0;
order:3;
}
.reply-link{
margin:0;
margin-top:20px;
align-self:center;
order:4;
}
100% на 10/11/2022. Тупил, не понимал в чем дело, сбросил внешние отступы для 4 последних правил - все получилось.
.tabs-list {
margin: 0;
padding: 0;
width: 180px;
display: flex;
flex-direction: column;
}
.tab{
margin-bottom:15px;
}
.tab:last-child {
margin-bottom:0;
}
.active{
align-self:flex-end;
}
.content {
display: flex;
flex-direction: column;
width: 280px;
padding: 20px 30px;
}
.author {
order:-1;
align-self: flex-start;
margin-bottom:15px;
}
.image {
max-width: 100%;
height: auto;
order:1;
margin: 0;
margin-bottom: 15px;
}
.title {
margin: 0;
align-self: center;
order: 2;
margin-bottom: 5px;
}
.message {
order: 3;
margin: 0;
}
.reply-link {
margin: 0;
margin-top: 20px;
align-self: center;
order: 4;
}
2 лайка
Старалась сделать кратко и, в основном, писала опираясь на предыдущее обучение. Вышло 100%.
.tabs-list {
display: flex;
flex-direction: column;
margin: 0;
padding: 0;
width: 180px;
}
.tab {
margin-bottom: 15px;
}
.tab:last-child {
margin-bottom: 0;
}
.active {
align-self: flex-end;
}
.content {
margin: 0;
width: 280px;
display: flex;
flex-direction: column;
padding: 20px 30px;
align-items: center;
}
.image {
max-width: 100%;
height: auto;
order: -1;
padding-bottom: 15px;
}
.author {
align-self: flex-start;
order: -2;
padding-bottom: 15px;
}
.title {
margin-top: 0;
margin-bottom: 5px;
}
.message {
margin-top: 0;
margin-bottom: 20px;
}
Lenn
14.Август.2023 10:21:07
32
Получилось вот так
.tabs-list {
width: 180px;
margin: 0;
padding: 0;
}
.tab {
margin-bottom: 15px;
}
.tab:last-child{
margin-bottom:0;
}
.active {
margin-left: auto;
}
.content{
display: flex;
flex-direction: column;
align-items: center;
width: 280px;
padding: 20px 30px;
}
.author {
align-self: flex-start;
margin-bottom: 15px;
}
.image {
max-width: 100%;
height: auto;
margin-bottom: 15px;
}
.title {
order: 1;
margin-top: 0;
margin-bottom: 5px;
}
.message {
order: 1;
margin-top: 0;
margin-bottom: 20px;
}
.reply-link {
order: 1;
}
просмотрела почти все коды. в каждом что-то лишнее да есть, кмк
у меня так получилось:
.tabs-list {
display: flex;
flex-direction: column;
margin: 0;
padding: 0;
width: 180px;
}
.tab {
margin-bottom: 15px;
}
.active {
align-self: flex-end;
}
.tab:last-child {
margin-bottom: 0;
}
.content {
display: flex;
flex-direction: column;
width: 280px;
padding: 20px 30px;
}
.author,
.image {
order: -1;
}
.author {
margin-bottom: 15px;
}
.image {
max-width: 100%;
height: auto;
margin-bottom: 15px;
}
.title {
align-self: center;
margin: 0;
margin-bottom: 5px;
}
.reply-link {
margin: 0 auto;
}
.message {
margin: 0;
margin-bottom: 20px;
}