summaryrefslogtreecommitdiff
path: root/web-ui/app/scss/style-guide.scss
blob: f6b957df8fd9f59b43d8fb2161c9bd4faccc8396 (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: 0px 25px;
  font-weight: bold;
}

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

section.guide-section {
  display: block;
  height: 550px;
  overflow-y: auto;
  padding: 82px 32px;

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