-
Notifications
You must be signed in to change notification settings - Fork 0
/
mutual_funds_explore.css
145 lines (121 loc) · 3.33 KB
/
mutual_funds_explore.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
body {
background-color: black;
}
.heading1 h3 {
color: white;
padding-top: 35px;
text-align: center;
padding-bottom: 20px;
}
.heading2 h3 {
color: white;
padding-top: 35px;
text-align: center;
padding-bottom: 20px;
}
.heading3 h3 {
color: white;
padding-top: 35px;
text-align: center;
padding-bottom: 20px;
}
.heading4 h3 {
color: white;
padding-top: 35px;
text-align: center;
padding-bottom: 20px;
}
.navbar-brand {
color: green !important; /* !important rule in CSS is used to add more importance to a property/value than normal.
!important rule will override ALL previous styling rules for that specific property
on that element! */
}
.navbar-brand i {
color: white !important;
}
.table-light {
border-collapse: collapse;
width: 100%;
}
th, td {
border: 1px solid black;
padding: 8px;
text-align: left;
}
th {
background-color: whitesmoke;
font-weight: bold;
}
td {
color: white;
}
tr {
background-color: black;
}
#stock-table tr:hover {
cursor: pointer;
}
#stock-table th {
align-items: center;
justify-content: center;
text-align: center;
}
#stock-table td {
align-items: center;
justify-content: center;
text-align: center;
}
#stock-table1 th {
align-items: center;
justify-content: center;
text-align: center;
}
#stock-table1 td {
align-items: center;
justify-content: center;
text-align: center;
}
#stock-table1 tr:hover {
cursor: pointer;
}
#pop1-1yr-return-1, #pop1-3yr-return-1, #pop1-5yr-return-1, #pop2-1yr-return-2, #pop2-3yr-return-2, #pop2-5yr-return-2,
#pop3-1yr-return-3, #pop3-3yr-return-3, #pop3-5yr-return-3, #pop4-3yr-return-4, #pop4-5yr-return-4, #all1-3yr-return-1,
#all1-5yr-return-1, #all2-1yr-return-2, #all2-3yr-return-2, #all2-5yr-return-2, #all3-1yr-return-3, #all3-3yr-return-3,
#all3-5yr-return-3, #all4-1yr-return-4, #all4-3yr-return-4, #all4-5yr-return-4, #all5-1yr-return-5, #all5-3yr-return-5,
#all5-5yr-return-6, #all6-1yr-return-6, #all6-3yr-return-6, #all6-5yr-return-6, #all7-1yr-return-7, #all7-3yr-return-7,
#all7-5yr-return-7, #all8-1yr-return-8, #all8-3yr-return-8, #all8-5yr-return-8, #all9-1yr-return-9, #all9-3yr-return-9,
#all9-5yr-return-9, #all10-3yr-return-10, #all10-5yr-return-10
{
color: green;
}
#pop4-1yr-return-4, #all1-1yr-return-1, #all10-1yr-return-10 {
color: red;
}
.container {
background-color: lightgray;
border-radius: 10px;
margin-top: 15px;
margin-bottom: 15px;
padding: 20px;
}
#understand-mf {
text-decoration: none;
text-align: center;
}
#welcome {
color: white;
}
#welcome-tag {
color: white;
text-align: center;
}
#view-more-btn {
background-color: #0069d9; /* Sets the background color of the button */
color: white; /* Sets the text color of the button */
padding: 10px 20px; /* Sets the padding of the button */
border: none; /* Removes the border of the button */
border-radius: 5px; /* Rounds the corners of the button */
cursor: pointer; /* Changes the cursor to a pointer when hovering over the button */
display: block; /* Makes the button a block-level element */
margin: 0 auto; /* Centers the button horizontally within its parent element */
}