summaryrefslogtreecommitdiff
path: root/web-ui/app/scss/style-guide.scss
blob: 6c8cf4699634fa1d1d66b0ae621c1e4a79e20fd8 (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
38
39
40
41
42
43
44
45
46
@import "compass/css3";

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

nav {
  position: fixed;    
  z-index: 10;
  height: 50px;
  width: 100%;
  background-color: #3e3a37;
  color: white;
}

ul li {
  display: inline;
}

ul.left, ul.right {
  padding: 12px;
  margin-bottom: 0px;
  font-weight: bold;
}

ul.right {
  li {
    margin: 8px;
  }
}

section.guide-section {
  display: block;
  height: 300px;
  padding-top: 50px;
  overflow-y: auto;

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