summaryrefslogtreecommitdiff
path: root/web-ui/app/scss/style-guide.scss
blob: 77efdfa86a7dbc45f5ca08bfaea7e7a3f4572824 (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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
@import "compass/css3";
@import "styles.scss";

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

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

ul li {
  display: inline;

  a {
    color: $primary_color;
  }
  a:hover {
    color: lighten($primary_color, 15%);
  }
}

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

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

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

.color-swatch {
  width: 160px;
  height: 230px;
  background-color: #344a5f;
  border-radius: 5px;
  display: inline-block;
  margin-right: 15px;
}

.color-label {
  position: relative;
  top: 173px;
  background-color: white;
  border: 1px solid #eee;
  text-align: center;
  color: #344a5f;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
  padding: 10px 0;
}

.color-name {
  font-size: small;
}