ensl.org/app/assets/stylesheets/pages/_users.scss
Luke Barratt 4f26f5a559 Further improvements to user pages
Added styling to private messages
Updated puma config and deployment scripts
2014-04-15 23:04:43 +01:00

132 lines
1.3 KiB
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;
}
}
}
/*
Agenda
*/
#agenda {
h4 {
margin-bottom: 1em;
}
table {
margin-bottom: em(20);
}
form {
@include span-columns(12);
margin-bottom: em(20);
}
.tab {
:last-child {
margin-bottom: 0;
}
}
#teams {
table {
margin-bottom: em(40);
}
}
}
/*
Messages
*/
#messages {
h1 {
margin-bottom: 1em;
}
.tab {
:last-child {
margin-bottom: 0;
}
}
.message {
@include span-columns(12);
margin-bottom: em(20);
.subject {
margin-bottom: 1em;
}
.content {
margin-bottom: em(20);
}
a.message {
display: inline;
margin: 0;
float: none;
}
&.highlight {
font-weight: bold;
}
}
.back {
margin-top: em(20);
}
}