-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
107 lines (97 loc) · 2 KB
/
styles.css
File metadata and controls
107 lines (97 loc) · 2 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
/*
-----------------------------------------
html
-----------------------------------------*/
body,#transparentNav{
background: url("../../images/bg.jpg") no-repeat center center fixed;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
}
/*navbar head* start*/
.navbar-nav>.open>a, .navbar-nav>.open>a:hover, .navbar-nav>.open>a:focus,.navbar-nav>.active>a, .navbar-nav>.active>a:hover, .navbar-nav>.active>a:focus,.dropdown-menu {
color: #678C6B;
background-color: #5A1919;
}
.dropdown-menu>li>a{
color:white;
}
/* end*/
/* --------------------------------------
Layout
-------------------------------------- */
#main{
box-shadow: 0 0 30px #000000;
}
#moreInfo{
background-color:rgba(0, 0, 0, 0.5);
position:relative;
margin-left: 0px;
margin-right: 0px;
margin-top: 80px;
color:#C0C0C0;
}
#inputMessage{
margin-bottom: 10px;
}
#searchText{
width:300px;
margin-left: 100px;
background-color: transparent;
color: green;
}
.navbar-brand{
padding:13px 15px;
}
/* Portrait & landscape phone */
/* Landscape phone to portrait tablet */
@media (max-width: 768px) {
#searchText{
width:100px;
margin-left: 10px;
}
}
/* Large desktop */
@media (min-width: 1200px) {
}
/*End */
/*Graph Style*/
.svg text{
fill: #ffb348;
}
.axis {
font: 12px sans-serif;
}
.axis path,
.axis line {
fill: white;
stroke: #000;
shape-rendering: crispEdges;
}
.d3-tip {
line-height: 1;
font-weight: bold;
padding: 12px;
background: rgba(51, 42, 33, 0.74);
color: #ff911b;
border-radius: 2px;
}
/* Creates triangle for tooltip */
.d3-tip:after {
box-sizing: border-box;
display: inline;
font-size: 10px;
width: 100%;
line-height: 1;
color: rgba(180, 21, 16, 0.98);
content: "\25BC";
position: absolute;
text-align: center;
}
/* Style northward tooltips differently */
.d3-tip.n:after {
margin: -1px 0 0 0;
top: 100%;
left: 0;
}