Blame view

public/stylesheets/application.scss 148 KB
540eb8cb   Braulio Bhavamitra   Split application...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/*
 * thidparty libraries
 *= require colorbox
 *= require inputosaurus
 *= require token-input
 *= require token-input-facebook
 *= require token-input-mac
 *= require token-input-facet
 * noosfero libraries
 *= require_self
 *= require iepngfix/iepngfix
 * views specifics
 *= require chat
 *= require search
 */
b62774ed   Braulio Bhavamitra   Merge branch 'noo...
16

540eb8cb   Braulio Bhavamitra   Split application...
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
74
75
76
77
78
79
80
81
@import "api-playground";

/* browser fixes */

img:-moz-broken {
  -moz-force-broken-image-icon:1;
}

/* general styles */

body {
  padding: 0px;
  margin: 0px;
  font-family: Verdana, sans-serif;
  font-size: 14px;
}
code, pre {
  color: #666;
}
.msie7 #content {
  border: 1px solid transparent;
}
#beta-tag {
  position: absolute;
  top: 4px;
  left: 50px;
  background-image: url(../images/beta.gif);
  width: 17px;
  height: 5px;
  z-index: 199;
}
#beta-tag span {
  display: none;
}
#header {
  padding: 10px;
}
#design_boxes {
  position: relative;
  margin-left: 10px;
  margin-right: 10px;
  padding: 0em;
}
#environment_identification {
  position: absolute !important;
  background: url("../images/bg_blue_logo.png") 5px no-repeat !important;
  vertical-align: bottom !important;
  width: 230px !important;
  height: 34px !important;
  line-height: 34px !important;
  padding-left: 60px !important;
}
#environment_identification:hover {
  color: #DFDFDF !important;
}
div.fieldWithErrors {
  display: inline;
  background: yellow;
}
div.fieldWithErrors input {
  border: 1px solid red;
  background: #fee;
}
div#errorExplanation {
  padding: 5px;
6633066c   Leandro Santos   adding block stor...
82
}