-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathstyles-with-nav.css
167 lines (139 loc) · 3.1 KB
/
styles-with-nav.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
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
/* Import font
@import url('https://fonts.googleapis.com/css?family=Lato');
/* LOTS of stuff here just to get the navigation bar in order */
.navbar-inverse {
background-color: #221f20;
border-color: none;
padding: 10px;
}
.navbar-right {
font-family: "Lato",helvetica,arial,sans-serif;
position: absolute;
display: block;
font-size: 1.2em;
color: white;
}
ul.nav.navbar-nav.navbar-right {
background: #009CAB;
visibility: visible;
opacity: 1;
display: block;
min-width: 300px;
position: relative;
transition: all 0.5s ease;
padding: 12px 10px 12px 10px;
}
ul.nav.navbar-nav.navbar-right::before {
content: "More Experimentation Tools";
}
ul.nav.navbar-nav.navbar-right:hover > li
{
visibility: visible;
opacity: 1;
display: block;
}
ul.nav.navbar-nav.navbar-right li {
color: #fff;
display: none;
visibility: hidden;
opacity: 0;
float: left;
padding: 0;
position: relative;
transition-duration: 0.5s;
}
ul.nav.navbar-nav.navbar-right li a {
color: #fff;
font-weight: normal;
font-size: 0.9em;
padding: 5px 0 5px 5px;
}
ul.nav.navbar-nav.navbar-right li:hover {
background: #00727C;
}
ul.nav.navbar-nav.navbar-right li>a:hover {
background-color: #004D53;
}
ul.nav.navbar-nav.navbar-right li {
clear: both;
width: 100%;
}
/* End all the stuff for the global nav */
body {
padding-top: 8px;
background-color: #f4f4f4;
}
/* Set the main body/text font */
p, a {
font-family: "Lato",helvetica,arial,sans-serif;
font-size:1.1em;
}
/* 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: "Lato",helvetica,arial,sans-serif;
}
/* 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: 19px;
}
/* Numerical inputs */
.form-control {
font-size: 17px;
padding: 0 10px;
background-color: #bdd4f9;
border: none;
height: 30px;
}