-
Notifications
You must be signed in to change notification settings - Fork 3
/
main.css
69 lines (58 loc) · 1.13 KB
/
main.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
@import url(https://fonts.googleapis.com/css?family=Merriweather:400,700);
.merriweather {
font-family: 'Merriweather';
}
/*
#controls {
font-family: 'Merriweather';
font-size: 10px;
}*/
a {
color: hotpink;
}
#tracker-container {
background-color: ghostwhite;
width: 100%;
padding: 20px;
background-color: #F4A360;
display: flex;
flex-wrap:wrap;
}
#tracker-controls {
margin-left: 20px;
padding:20px;
background-color: tomato;
}
#tracker-parent {
padding:20px;
flex-basis: auto;
background-color: gainsboro;
/*overflow-x: visible;*/
}
.tracker-cell, .tracker-first-cell, .tracker-cell-header {
height: 20px;
min-width: 20px;
border: black;
border-color: black;
background: #fff;
border-style: solid;
border-width: 1px;
font-size: 75%;
padding:2px;
/*background-color: pink;*/
}
.tracker-enabled {
background: orange;
}
.tracker-current {
background: blueviolet;
}
#app-message {
position: fixed;
top: 10px;
left: 10px;
background-color: peru;
margin: 10px;
padding: 10px;
display: none;
}