-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathstyles.css
99 lines (83 loc) · 1.87 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
/* Remove the title bar */
.navbar{
visibility: hidden;
}
body {
padding-top: 8px;
background-color: #f4f4f4;
}
/* Set the main body/text font */
p, a {
font-family: "adelle-sans",helvetica,arial,sans-serf;
font-size: 14px;
}
/* The ggiraph package does a weird overwriting of the text style */
/* and makes it a serif font. So, this corrects for that */
text {
font-family: "adelle-sans",helvetica,arial,sans-serf;
}
/* Tabsets try to resize to be wayyyy to tall. So, overwrite that. */
#section-row-1 {
height: 250px;
flex: 0 0 250px !important;
}
/* Main results output */
h1 {
font-family: "adelle-sans",helvetica,arial,sans-serf;
font-size: 48px;
font-weight: bold;
color: #416fba;
text-align: center;
}
h2 {
font-family: "adelle-sans",helvetica,arial,sans-serf;
font-size: 22px;
text-align: center;
line-height: 0.8;
}
h3 {
font-family: "adelle-sans",helvetica,arial,sans-serf;
font-size: 18px;
text-align: center;
}
/* Titles at the top of each panel */
.chart-title {
font-family: "adelle-sans",helvetica,arial,sans-serf;
font-size: 16px;
font-weight: bold;
color: #444;
}
/* Tabset text */
#section-row-1 > ul > li > a {
font-family: "adelle-sans",helvetica,arial,sans-serf;
font-size: 16px;
font-weight: bold;
color: #444;
border-color: #cccccc;
}
/* Make the tabset tabs look more visibly like tabs */
#section-row-1 > ul > li:not(.active) > a {
background-color: #eeeeee;
}
/* Indent the numeric sliders a bit */
.shiny-input-container:not(.shiny-input-container-inline) {
margin-left: 50px;
/* margin-right: auto; */
}
/* One-tailed vs. two-tailed radio buttons */
#tail {
width: 95%;
}
/* Overall app title */
.navbar-brand {
font-size: 22px;
font-weight: bold;
}
/* Numerical inputs */
.form-control {
font-size: 17px;
padding: 0 10px;
background-color: #bdd4f9;
border: none;
height: 30px;
}