web/stylebag.css

106 lines
1.4 KiB
CSS
Raw Normal View History

.bg-color {
background-color: #1b1c1e;
}
.comp-color {
background-color: #212226;
}
.nav-radius {
border-bottom-left-radius: 20px;
border-bottom-right-radius: 20px;
}
.title{
color: white;
font-family: 'Poppins', sans-serif;
display: flex;
2021-09-13 15:27:24 +07:00
margin-top: 15px;
margin-left: 48px;
justify-content: left;
text-align: left;
background-color: 1b1c1e;
}
.bag-list{
display: flex;
color: white;
border-bottom: 1px solid white;
background-color: 1b1c1e;
font-family: 'Poppins', sans-serif;
margin-bottom: 1%;
justify-content: left;
text-align: left;
}
.body-right{
2021-09-14 19:24:32 +07:00
margin-right: 48px;
color: white;
width: 30%;
height: 100%;
}
2021-09-14 19:24:32 +07:00
2021-09-13 15:27:24 +07:00
.body-left{
margin-left: 48px;
2021-09-14 19:24:32 +07:00
margin-right: 48px;
2021-09-13 15:27:24 +07:00
}
.button{
color: white;
background-color: green;
margin-top: 15px;
}
2021-09-13 15:27:24 +07:00
2021-09-13 16:31:07 +07:00
.full-body{
display: flex;
}
2021-09-15 16:14:19 +07:00
.info{
margin-left: 30px;
}
.titlesummary{
text-align: center;
border-bottom: 1px solid white;
margin: 10px;
}
2021-09-13 16:31:07 +07:00
@media only screen and (max-width: 1000px){
2021-09-13 15:27:24 +07:00
.full-body{
2021-09-13 16:31:07 +07:00
display: grid !important;
2021-09-13 15:27:24 +07:00
}
2021-09-14 19:24:32 +07:00
.body-right{
margin-left: 48px;
}
2021-09-14 21:11:55 +07:00
2021-09-13 15:27:24 +07:00
}
2021-09-15 16:14:19 +07:00
@media (max-width: 600px){
2021-09-14 21:18:55 +07:00
2021-09-14 21:11:55 +07:00
.full-body{
2021-09-15 16:19:24 +07:00
font-size: 6px ;
2021-09-14 21:11:55 +07:00
}
.img{
2021-09-15 16:14:19 +07:00
width: 30px;
height: 30px;
}
.info{
margin-left: 5px;
}
.titletr{
word-break: keep-all;
}
.titletrdes{
word-break: break-all;
}
.titlesummary{
2021-09-15 16:19:24 +07:00
font-size: 10px;
2021-09-15 16:14:19 +07:00
2021-09-14 21:11:55 +07:00
}
}