-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
86 lines (86 loc) · 1.44 KB
/
Copy pathstyle.css
File metadata and controls
86 lines (86 loc) · 1.44 KB
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
h1 {
color: black;
text-align: center;
font-family: Georgia;
}
button {
background-color: light gray;
border: 2px solid black;
color: black;
padding: 7px 10px;
}
#flex-layout {
display: flex;
flex-direction: row;
align-items: center;
}
#trackers {
display: flex;
flex-direction: column;
order: 2;
width: 30%;
}
#counter {
text-align: center;
font-family: Georgia;
/*background: pink;*/
width: 100%;
order: 1;
}
#money {
/*background: green;*/
width: 100%;
height: 100px;
order: 2;
text-align: center;
line-height: 100px;
}
#jobs {
/*background: blue;*/
border-style: dotted;
border-color: black;
width: 35%;
height: 500px;
order: 1;
display: flex;
flex-direction: column;
align-items: center;
justify-content: space-around;
}
#upgrades {
/*background: red;*/
border-style: dotted;
border-color: black;
width: 35%;
height: 500px;
order: 3;
display: flex;
flex-direction: column;
align-items: center;
justify-content: space-around;
}
#bottom-row{
display: flex;
flex-direction: row;
align-items: center;
}
#save-functionality {
/*background: yellow;*/
width: 15%;
height: 150px;
order: 1;
display: flex;
flex-direction: column;
align-items: center;
justify-content: space-around;
}
#message{
/*background: orange;*/
font-family: Georgia;
font-size: 24px;
color: black;
width: 70%;
order: 2;
height: 150px;
text-align: center;
}