-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.css
140 lines (116 loc) · 2.4 KB
/
index.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
.dropbtn {
background-color: #3498DB;
color: white;
padding: 16px;
font-size: 16px;
border: none;
cursor: pointer;
}
.dropbtn:hover, .dropbtn:focus {
background-color: #2980B9;
}
.dropdown {
position: relative;
display: inline-block;
}
.dropdown-content {
display: none;
position: absolute;
background-color: #f1f1f1;
min-width: 160px;
box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
z-index: 1;
}
.dropdown-content a {
color: black;
padding: 12px 16px;
text-decoration: none;
display: block;
}
.dropdown-content a:hover {background-color: #ddd}
.show {display:block;}
#button {
background-color: #4CAF50; /* Green */
border: none;
color: rgb(255, 255, 255);
padding: 15px 32px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 16px;
margin: 4px 2px;
cursor: pointer;
}
#appContainer {
width: 100%;
padding-right: 15px;
padding-left: 15px;
text-align: center;
}
html, body {
max-width: 100%;
/* overflow-x: hidden; */
/* overflow-y: hidden; */
}
.m1 {
margin-left: 35px;
margin-top: 25px;
}
#loaderVisible {
position: absolute;
top: 100px;
left: 250px;
width: 10rem;
height: 10rem;
visibility: hidden;
}
#loaderText {
position: absolute;
top: 275px;
left: 250px;
width: 10rem;
height: 10rem;
visibility: hidden;
}
#loaderVisibleComp {
position: absolute;
top: 425px;
left: 250px;
width: 10rem;
height: 10rem;
visibility: hidden;
}
#loaderTextComp {
position: absolute;
top: 600px;
left: 250px;
width: 10rem;
height: 10rem;
visibility: hidden;
}
#titleContainer {
height: 150px;
}
.yieldPlot {
position: relative;
}
.comparePlot {
position: relative;
}
.gradient-custom {
/* fallback for old browsers */
background: #0d6efd;
/* Chrome 10-25, Safari 5.1-6 */
background: -webkit-linear-gradient(to bottom, rgba(13, 110, 253, 0.5), rgba(192, 205, 227, 0.5));
/* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
background: linear-gradient(to bottom, rgba(13, 110, 253, 0.5), rgba(192, 205, 227, 0.5))
}
.about-titles{
margin-top: 15px;
}
.textAdjust {
font-size: 15px;
}
.row {
width: 100%;
}