web/stylebag.css

84 lines
1.1 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 10:27:24 +02: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 14:24:32 +02:00
margin-right: 48px;
color: white;
width: 30%;
height: 100%;
}
2021-09-14 14:24:32 +02:00
2021-09-13 10:27:24 +02:00
.body-left{
margin-left: 48px;
2021-09-14 14:24:32 +02:00
margin-right: 48px;
2021-09-13 10:27:24 +02:00
}
.button{
color: white;
background-color: green;
margin-top: 15px;
}
2021-09-13 10:27:24 +02:00
2021-09-13 11:31:07 +02:00
.full-body{
display: flex;
}
@media only screen and (max-width: 1000px){
2021-09-13 10:27:24 +02:00
.full-body{
2021-09-13 11:31:07 +02:00
display: grid !important;
2021-09-13 10:27:24 +02:00
}
2021-09-14 14:24:32 +02:00
.body-right{
margin-left: 48px;
}
2021-09-14 16:11:55 +02:00
2021-09-13 10:27:24 +02:00
}
2021-09-14 16:11:55 +02:00
@media (max-width: 450px){
2021-09-14 16:18:55 +02:00
2021-09-14 16:11:55 +02:00
.full-body{
font-size: x-small ;
}
.img{
width: 40px;
height: 40px;
}
}