summaryrefslogtreecommitdiff
path: root/web-ui/app/scss/style-guide.scss
blob: 95f6f789b0f440aabc36b7d098175e9c4be16199 (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
@import "compass/css3";

body {
  display: block;
  overflow: scroll !important; 
}

nav {
  height: 50px;
  background-color: #3e3a37;
  color: white;
}

ul li {
  display: inline;
}

section.guide-section {
  display: block;
  height: 300px;

  &:nth-child(even) {
    background: white
  }
  
  &:nth-child(odd) {
    background: #E5E5E3
  }
}