-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
executable file
·205 lines (160 loc) · 3.5 KB
/
styles.css
File metadata and controls
executable file
·205 lines (160 loc) · 3.5 KB
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
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
/*
VIB colors:
vib_navy <- '#1b2944'
vib_orange <- '#ec672a'
vib_teal <- '#3abbba'
vib_purple <- '#5b2a82'
*/
/* NAVIGATION BAR HEADER */
/* bar itself */
.navbar {
background-color: #1b2944;
font-family: Arial;
font-size: 13px;
color: #FFFFFF;
padding: 1em
}
/* title */
.navbar-default .navbar-brand {
color: #ec672a;
font-weight: bold;
font-size: 25px;
pointer-events:none
}
/* tabs on focus / hover */
.navbar-default .navbar-nav>li>a:focus, .navbar-default .navbar-nav>li>a:hover {
color: #FFFFFF ;
font-weight: bold
}
/* selected tab */
.navbar-default li.active>a {
color: #FFFFFF !important; /* using !important to override other settings */
background-color: #1b2944 !important; /* darkblue to hide ghost tab, teal in rnaseq app */
font-weight: bold;
font-size: 1.25em
}
/* FOOTER IMAGE */
.well img {
float:left;
margin:25px;
height:100px
}
img.footer {
float:right;
margin:25px;
height:100px
}
/* NAVIGATION TABS MAIN PANEL */
/* inactive tabs */
.nav-tabs>li>a{
color: #1b2944;
font-weight: bold
}
/* selected tab */
.nav-tabs>li.active>a{
color: #5b2a82;
font-weight: bold;
font-size: 1.25em
}
/* text on selected tab on focus/hover, without this rule the text is grey */
.nav-tabs>li.active>a:focus, .nav-tabs>li.active>a:hover {
color: #5b2a82;
font-weight: bold;
font-size: 1.25em
}
/* WIDGETS */
/* select input title */
.control-label {
color: #1b2944;
}
/* action button */
button {
background-color: #f0f0f0 !important;
font-style: italic;
color: #1b2944;
margin-bottom: 1em !important
}
/* download button */
.btn .btn-default .shiny-download-link .shiny-bound-output {
background-color: #f0f0f0 !important;
font-style: italic;
color: #1b2944;
margin-bottom: 1em !important
}
/* text */
h1, h2, h3, h4, h5, h6 {
color: #1b2944; /* dark blue */
font-weight: bold
}
/* title panel */
h2 {
text-decoration: underline;
text-decoration-color: #ec672a /* orange line */
}
h3{
border-bottom: 2px solid #ec672a /* orange line */
}
p, .shiny-text-output {
color: #1b2944; /* dark blue */
font-weight: bold
}
/* extra explanatory line */
p.descr, a.link {
font-style: italic;
font-weight: normal
}
p.descr {
color: #1b2944; /* dark blue */
}
p.warning {
color: #ec672a; /* orange */
}
/*
p.em {
border-bottom: 1px solid #ec672a
}
*/
/* hyperlink */
a.link {
color: #5b2a82; /* purple */
}
/* DIV's */
/* make input div's same size as parent, max width defined by shiny itself as 100% of window */
.shiny-input-container {
width: inherit !important
}
select {
width: inherit !important
}
/* above doesn't work for fluidRow columns */
/* does nothing */
.form-group .shiny-input-container {
width: inherit !important
}
/* does nothing */
.form-control .selectize-control {
width: inherit !important
}
.form-group .shiny-input-container {
width: inherit !important
}
.selectize-control .form-control .single{
width: inherit !important
}
/* Silent error validation */
.shiny-output-error-validation{
color: #3abbba;
font-weight: bold;
margin-bottom: 1em
}
/* highlights using span in purple , class em (emphasis) */
.em {
color: #5b2a82;
font-weight: bold;
font-size: 1.2em;
text-decoration: underline
}
/* clear metadata button */
#clear_meta {
float: right
}