mirror of
https://github.com/ENSL/ensl.org.git
synced 2024-12-29 05:51:22 +00:00
57 lines
530 B
SCSS
57 lines
530 B
SCSS
/*
|
|
Groups List
|
|
*/
|
|
|
|
table.groups {
|
|
|
|
.name {
|
|
width: 50%;
|
|
}
|
|
|
|
.created {
|
|
width: 20%;
|
|
}
|
|
|
|
.founder {
|
|
width: 20%;
|
|
}
|
|
|
|
.actions {
|
|
width: 10%;
|
|
text-align: right;
|
|
}
|
|
}
|
|
|
|
/*
|
|
Groups Page
|
|
*/
|
|
|
|
#group {
|
|
|
|
table.roles {
|
|
|
|
.name,
|
|
.username {
|
|
width: 20%;
|
|
}
|
|
|
|
.role {
|
|
width: 60%;
|
|
}
|
|
|
|
.fields {
|
|
margin: 0;
|
|
float: left;
|
|
}
|
|
|
|
.controls {
|
|
margin: 0;
|
|
float: right;
|
|
|
|
.remove {
|
|
margin-bottom: 0;
|
|
margin-right: 0;
|
|
}
|
|
}
|
|
}
|
|
}
|