-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
122 lines (89 loc) · 1.46 KB
/
style.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
/* define size of chart */
div#chart {
border: 1px;
height: 100%;
width: 100%;
}
body {
background: coral;
}
form {
background: oldlace;
}
fieldset {
background: palegoldenrod;
}
#chart {
background:peachpuff;
}
section {
background: lightgray;
}
.container.mx-auto {
background: burlywood
}
header {
height: 50px;
width: 100%;
background-color: slategrey;
color: snow;
}
h1 {
margin: 0;
}
/* what does it do? */
/*
div.spacer {
height: 125px;
} */
/*
button {
display: inline-block;
}
input {
display: inline-block;
} */
/* create border box */
#nyse-ticker-input,
#nasdaq-ticker-input,
#stock-profile-input {
border: 1px solid #ccc;
}
/* border on specific ticker searches */
/* fieldset {
border: 1px solid #000;
} */
/* what does it do? */
/* .stock-info {
display: inline;
width: 50%;
height: 100%;
} */
/* all secondary titles bold and 20px in size (company profile, stock information and stock news) */
h4,
h2,
.labelTicker {
font-weight: bold;
font-size: 20px;
margin: 10px;
}
/* margin to the left for all the info above input boxes */
label {
margin: 0px;
}
a {
color: slateblue;
}
/* trick to put the background with imagee faded */
.stockInfo::after {
content: "";
/* background: url(Background.png); */
opacity: 0.2;
top: 0;
left: 0;
bottom: 0;
right: 0;
size: 100%;
position: relative;
z-index: -1;
}