mirror of
https://github.com/ENSL/ensl.org.git
synced 2025-01-02 15:51:08 +00:00
4f26f5a559
Added styling to private messages Updated puma config and deployment scripts
132 lines
1.3 KiB
SCSS
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);
|
|
}
|
|
}
|