You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

43 lines
783 B

/* Sidebar
--------------------------------*/
.sidebar {
position: relative;
width: 100%;
}
.region-sidebar-first,
.region-sidebar-second {
display: flex;
flex-direction: column;
gap: 2rem;
}
.sidebar .block {
background-color: var(--light);
padding: 1rem;
}
.sidebar ul,
.sidebar ol {
margin: 0;
padding: 0;
list-style-position: inside;
}
.sidebar ul {
list-style: none;
}
.sidebar li {
padding: 6px 0;
border-bottom: 1px solid var(--border);
}
.sidebar .block p:last-of-type {
margin: 0;
}
/* Sidebr -> Form */
.sidebar input[type="text"],
.sidebar input[type="email"],
.sidebar input[type="url"],
.sidebar input[type="password"],
.sidebar input[type="search"],
.sidebar textarea {
width: 100%;
max-width: 100%;
border: 1px solid var(--border);
}