32 lines
602 B
SCSS
32 lines
602 B
SCSS
// Place all the styles related to the Users controller here.
|
|
// They will automatically be included in application.css.
|
|
// You can use Sass (SCSS) here: http://sass-lang.com/
|
|
|
|
|
|
/* sidebar */
|
|
|
|
aside {
|
|
section.user_info {
|
|
margin-top: 20px;
|
|
}
|
|
section {
|
|
padding: 10px 0;
|
|
margin-top: 20px;
|
|
&:first-child {
|
|
border: 0;
|
|
padding-top: 0;
|
|
}
|
|
span {
|
|
display: block;
|
|
margin-bottom: 3px;
|
|
line-height: 1;
|
|
}
|
|
h1 {
|
|
font-size: 1.4em;
|
|
text-align: left;
|
|
letter-spacing: -1px;
|
|
margin-bottom: 3px;
|
|
margin-top: 0px;
|
|
}
|
|
}
|
|
}
|