akf-forum/public/css/threads.css

38 lines
567 B
CSS
Raw Normal View History

2022-08-26 16:27:29 +03:00
.threads {
width: 100%;
padding: 20px;
}
.threads-box {
width: 100%;
padding: 8px;
2022-08-31 18:11:54 +03:00
box-shadow: 0 0 5px 0 var(--box-shadow);
2022-08-26 16:27:29 +03:00
display: flex;
justify-content: space-between;
margin: 0px 0px 8px 0px;
cursor: pointer;
align-items: center;
}
.threads-box:hover {
2022-08-31 19:16:43 +03:00
background-color: var(--box-shadow);
2022-08-26 16:27:29 +03:00
}
2022-08-27 14:08:28 +03:00
2022-08-26 16:27:29 +03:00
.thread-box-title {
padding: 10px;
font-size: 18px;
font-weight: 700;
2022-08-31 19:16:43 +03:00
color: var(--reaction-hover);
2022-08-26 16:27:29 +03:00
}
.thread-box-title>span {
2022-08-31 18:14:21 +03:00
color: var(--important);
2022-08-26 16:27:29 +03:00
}
@media (max-width: 480px) {
.threads-box {
flex-direction: column;
}
}