78 lines
1.1 KiB
CSS
78 lines
1.1 KiB
CSS
body {
|
|
overflow-y: scroll;
|
|
}
|
|
|
|
#edit-tab-nav {
|
|
position: relative;
|
|
display: flex;
|
|
flex-direction: row;
|
|
justify-content: space-around;
|
|
margin-bottom: 20px;
|
|
}
|
|
|
|
#edit-tab-nav-marker {
|
|
position: absolute;
|
|
height: 5px;
|
|
left: 0px;
|
|
width: 0px;
|
|
background-color: var(--b9h-color-accent);
|
|
bottom: -20px;
|
|
transition: 0.5s;
|
|
|
|
}
|
|
|
|
#edit-tab-roll {
|
|
width: 200vw;
|
|
display: flex;
|
|
flex-direction: row;
|
|
transform: translateX(-0vw);
|
|
transition: transform 0.5s;
|
|
}
|
|
|
|
.edit-single-tab {
|
|
width: 100vw;
|
|
padding: 10px;
|
|
}
|
|
|
|
.edit-single-tab li {
|
|
margin-left: 30px;
|
|
list-style: none;
|
|
}
|
|
|
|
.edit-single-tab h4 {
|
|
margin-bottom: 10px;
|
|
}
|
|
|
|
.edit-tab-nav-link {
|
|
font-weight: 600;
|
|
font-size: 1.2rem;
|
|
}
|
|
|
|
header {
|
|
height: auto;
|
|
margin-bottom: 20px;
|
|
}
|
|
|
|
input[type=text]{
|
|
display: block;
|
|
font-size: 1em;
|
|
font-family: Inter;
|
|
font-weight: 400;
|
|
margin-top: 5px;
|
|
margin-bottom: 10px;
|
|
padding-left: 5px;
|
|
border: 0px solid #ccc;
|
|
background-color: #e6e6e6;
|
|
border-radius: 0px;
|
|
}
|
|
|
|
.ing-input-lang {
|
|
margin-left: 20px;
|
|
}
|
|
|
|
.ing-form-save {
|
|
display: block;
|
|
margin-top: 30px;
|
|
font-size: 1.5rem;
|
|
cursor: pointer;
|
|
} |