c5d1ab0266
Added the template for to display locations on the front end. Still need to add template for individual locations. Also added member editing. Still need to wire up the avatar uploading but adding and editing member information is possible. Still need to fine tune it according to roles
33 lines
575 B
CSS
33 lines
575 B
CSS
section[role="den-login"] {
|
|
width: 100%;
|
|
max-width: 600px;
|
|
padding: 10px;
|
|
margin: 0 auto;
|
|
color: var(--highlight);
|
|
}
|
|
|
|
section[role="den-login"] div[role="system-notice"] {
|
|
border-radius: 3px;
|
|
padding: 3px;
|
|
background: var(--highlight);
|
|
color: var(--primary);
|
|
}
|
|
|
|
section[role="den-index"] {
|
|
width: 100%;
|
|
max-width: 600px;
|
|
padding: 10px;
|
|
margin: 0 auto;
|
|
color: var(--white);
|
|
}
|
|
|
|
section a {
|
|
color: var(--white);
|
|
border-bottom: 1px solid var(--highlight);
|
|
}
|
|
|
|
section a:hover {
|
|
border-bottom: 1px solid var(--secondary);
|
|
padding-bottom: 2px;
|
|
}
|