-
Notifications
You must be signed in to change notification settings - Fork 2
/
styles.css
149 lines (129 loc) · 2.53 KB
/
styles.css
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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
input[type="number"] {
max-width: 80%;
}
div.outer {
position: fixed;
top: 41px;
left: 0;
right: 0;
bottom: 0;
overflow: hidden;
padding: 0;
}
/* Customize fonts */
label {
font-family: 'Helvetica Neue', Helvetica;
color : #179E8D;
font-weight: 400;
}
input, select {
font-family: 'Helvetica Neue', Helvetica;
color : black;
font-weight: 400;
}
body {
font-family: 'Helvetica Neue', Helvetica;
color: #179E8D;
font-weight: 200;
padding-top: 50px;
}
h1, h2, h3 { font-weight: 400;
font-family: 'Helvetica Neue', Helvetica;
color: #179E8D;}
h4 { font-weight: 400;
font-family: 'Helvetica Neue', Helvetica;
color: black;}
li {
color: white;
}
#controls {
/* Appearance */
color: #179E8D;
background-color: lightgray;
padding: 0 20px 20px 20px;
cursor: move;
/* Fade out while not hovering */
opacity: 0.65;
zoom: 0.9;
transition: opacity 500ms 1s;
}
#controls:hover {
/* Fade in while hovering */
opacity: 0.95;
transition-delay: 0;
}
/* Position and style citation */
#cite {
position: absolute;
color: black;
bottom: 10px;
left: 150px;
font-size: 12px;
}
/* If not using map tiles, show a white background */
.leaflet-container {
background-color: white !important;
}
/* Add an image to navbar */
#img-id{
position: fixed;
right: 10px;
top: 10px;
}
/*Change title colors*/
#title {
color: #179E8D;
}
.navbar-default {
background-color: white !important;
}
/*Collapsible button*/
button {
font-family: 'Helvetica Neue', Helvetica;
right: -20px;
background-color: white;
color: black;
}
button.collapsed:after
{
width:80px;
display: inline-block;
display: inline-block;
font: normal normal normal 14px/1 FontAwesome;
font-size: inherit;
text-rendering: auto;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
content: 'Expandir \f063';
transition: all linear 0.25s;
}
button:after
{
width:80px;
display: inline-block;
display: inline-block;
font: normal normal normal 14px/1 FontAwesome;
font-size: inherit;
text-rendering: auto;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
content: 'Minimizar \f062';
transition: all linear 0.25s;
}
.btn:after {
width:0px;
content: '';
}
.handsontable th {
background-color: white;
color: #179E8D;
}
.ht_master tr td {
background-color: #F00;
}
.ht_master tr > td:nth-of-type(even) {
background-color: #f00;
}
.ht_master tr > td:nth-child(3) {
background-color: #f00;
}