-
Notifications
You must be signed in to change notification settings - Fork 62
/
Copy pathcustom_styles.css
34 lines (31 loc) · 917 Bytes
/
custom_styles.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
.dataTable {
caption-side: bottom;
width: 700px;
}
div.cost {
background-image: url(https://s3.amazonaws.com/backtesting-strategies-r/banknote.png);
background-repeat: no-repeat;
background-position: 10px;
background-color: lightgreen;
padding: 25px 25px 25px 65px;
font-weight: bold;
border: 1px solid black;
}
div.warning {
background-image: url(https://s3.amazonaws.com/backtesting-strategies-r/fire.png);
background-repeat: no-repeat;
background-position: 10px;
background-color: pink;
padding: 25px 25px 25px 65px;
font-weight: bold;
border: 1px solid black;
}
div.info {
background-image: url(https://s3.amazonaws.com/backtesting-strategies-r/bulb.png);
background-repeat: no-repeat;
background-position: 10px;
background-color: lightgray;
padding: 25px 25px 25px 65px;
font-weight: bold;
border: 1px solid black;
}