mirror of
https://github.com/ENSL/ensl.org.git
synced 2025-01-06 01:40:53 +00:00
f2d908a06f
Added styling to gathers page Added styling to account page Improved forms styling
55 lines
496 B
SCSS
55 lines
496 B
SCSS
/*
|
|
Users Listing
|
|
*/
|
|
|
|
#users {
|
|
table-layout: auto;
|
|
|
|
.country,
|
|
.age {
|
|
width: 5%;
|
|
}
|
|
|
|
.username,
|
|
.name {
|
|
width: 25%;
|
|
}
|
|
|
|
.steamid {
|
|
width: 20%;
|
|
}
|
|
|
|
.actions {
|
|
text-align: right;
|
|
}
|
|
}
|
|
|
|
/*
|
|
Profile
|
|
*/
|
|
|
|
#user {
|
|
@include span-columns(12);
|
|
|
|
.tabbed-contents {
|
|
margin-bottom: em(20);
|
|
}
|
|
}
|
|
|
|
#profile {
|
|
|
|
.controls {
|
|
@include shift(0);
|
|
}
|
|
|
|
.tab {
|
|
|
|
h4 {
|
|
margin-bottom: 1em;
|
|
}
|
|
|
|
.fields:last-child {
|
|
margin-bottom: 0;
|
|
}
|
|
}
|
|
}
|