forked from chrisjonesdesign85/time-tracker
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
112 lines (100 loc) · 1.71 KB
/
styles.css
File metadata and controls
112 lines (100 loc) · 1.71 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
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
body {
background-image: url(./timetracker-bg.jpg);
background-color: #362c2d;
background-repeat: no-repeat;
/* background-position: center; */
font-family: Arial, Helvetica, sans-serif;
background-size: cover;
}
.container {
max-width: 800px;
margin: 30px auto;
color: white;
text-align: center;
}
h1,
h2 {
font-family: Arial, Helvetica, sans-serif;
font-weight: 100;
font-size: 2.6rem;
text-transform: capitalize;
}
#seconds,
#tens,
#mins,
#hrs {
font-size: 2em;
}
.control-btns {
width: 150px;
height: 30px;
background: transparent;
color: white;
border: 2px solid white;
border-radius: 2px;
margin-right: 10px;
outline: none;
}
.submit {
background: transparent;
color: white;
border: 2px solid white;
border-radius: 2px;
margin-right: 10px;
outline: none;
}
.control-btns:hover,
.submit:hover {
background-color: white;
color: #52c2ff;
font-weight: 800;
text-transform: capitalize;
}
.dashboard {
padding-top: 50px;
}
.dash-container {
width: 100%;
}
.times {
display: flex;
}
.project {
display: flex;
padding: 10px;
text-align: left;
color: #fff;
background: transparent;
background: rgba(7, 7, 7, 0.2);
border-bottom: 3px solid #fff;
margin-bottom: 20px;
justify-content: space-between;
align-items: center;
}
.project h3 {
display: flex;
margin: 0;
padding: 0;
color: #52c2ff;
text-transform: capitalize;
}
.projectBox {
display: flex;
}
#timer {
margin-right: 20px;
color: #52c2ff;
font-size: 1.8rem;
align-items: center;
}
.playBtn,
.stopBtn,
.delete {
margin-right: 25px;
color: white;
background-color: #52c2ff;
border-radius: 20%;
border: none;
padding: 10px;
/* background-color: darkgray; */
}