Browse code

added minor css to title

pablo-rodr-bio2 authored on 30/04/2021 10:26:32
Showing 3 changed files

... ...
@@ -1,5 +1,5 @@
1 1
 Package: GSVA
2
-Version: 1.39.26
2
+Version: 1.39.27
3 3
 Title: Gene Set Variation Analysis for microarray and RNA-seq data
4 4
 Authors@R: c(person("Justin", "Guinney", role=c("aut", "cre"), email="justin.guinney@sagebase.org"),
5 5
              person("Robert", "Castelo", role="aut", email="robert.castelo@upf.edu"),
... ...
@@ -1,16 +1,17 @@
1 1
 fluidPage( 
2 2
   theme = shinytheme("spacelab"),
3 3
   shinyjs::useShinyjs(),
4
-  add_busy_spinner(spin = "double-bounce", position = "bottom-right", height = "100px", width = "100px"),
4
+  add_busy_spinner(spin = "double-bounce", position = "bottom-right",
5
+                   height = "100px", width = "100px"),
5 6
   tags$head(
6 7
     tags$link(rel = "stylesheet", type = "text/css", href = "style.css")
7 8
   ),
8
-  titlePanel(
9
-    fluidRow(
9
+  titlePanel( 
10
+    fluidRow(id = "title_gsva",
10 11
       column(6,
11
-             h2("GSVA Shiny App", align="left")),
12
+             h2(id="app_title", "GSVA SHINY APP", align="left")),
12 13
       column(6,
13
-             tags$img(src="GSVA.png", align="right", height=75, width=75))
14
+             h2(tags$img(src="GSVA.png", align="right", height=75, width=75)))
14 15
     ), windowTitle="GSVA"),
15 16
   
16 17
   fluidRow(
... ...
@@ -1,4 +1,13 @@
1 1
 #errorsGsva{color: red;
2 2
 font-size: 20px;
3 3
 font-weight: bold;
4
+}
5
+
6
+#title_gsva {
7
+  background-color: black;
8
+}
9
+
10
+#app_title {
11
+  color: white;
12
+  font-weight: bold;
4 13
 }
5 14
\ No newline at end of file