blob: b582a5d535aaf96da4a15f5e31b1abd4eecf0823 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
|
@import "compass/css3";
@import "reset";
@import "foundation";
@import "colors";
@import "mixins";
@import "alerts";
@import "read";
@import "reply";
@import "compose";
@import "security";
@import "mascot";
@import "styles";
html {
height:100%;
}
body {
min-height:100%;
overflow: hidden;
background: $white;
}
header#main {
overflow: hidden;
position: fixed;
top: 0;
width: 100%;
position: relative;
margin-bottom: 0;
}
.no-padding {
padding: 0;
}
.text-right {
text-align: right;
}
|