mirror of
https://gitlab.com/nekoya/web.git
synced 2024-11-22 22:36:37 +01:00
63 lines
949 B
CSS
63 lines
949 B
CSS
.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;
|
|
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{
|
|
margin-left: 20px;
|
|
color: white;
|
|
width: 30%;
|
|
height: 100%;
|
|
|
|
}
|
|
.body-left{
|
|
margin-left: 48px;
|
|
}
|
|
|
|
.button{
|
|
color: white;
|
|
background-color: green;
|
|
margin-top: 15px;
|
|
}
|
|
|
|
.full-body{
|
|
display: flex;
|
|
}
|
|
|
|
@media only screen and (max-width: 1000px){
|
|
.full-body{
|
|
display: grid !important;
|
|
}
|
|
}
|
|
|