-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstyles.css
More file actions
69 lines (58 loc) · 957 Bytes
/
styles.css
File metadata and controls
69 lines (58 loc) · 957 Bytes
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
:root {
font-family: "Helvetica Neue", Sans-Serif;
font-weight: 300;
background: #E0E0E0;
padding: 0;
overflow: hidden;
}
body {
margin: 0;
width: 500px;
margin: 0 auto;
background: #FFF;
height: 100vh;
overflow: auto;
border: 1px solid silver;
box-shadow: 0px 0px 5px gray;
border-top: 0px;
border-bottom: 0px;
}
h1 {
font-weight: 100;
padding-left: 40px;
margin: 0;
margin-top: 40px;
}
.project-item {
padding: 5px 2px;
}
.project-item.add {
padding-left: 40px;
}
.project-item.add a {
cursor: pointer;
text-decoration: underline;
}
.project-item .name, .project-item .time, .project-item .entry-count {
margin-left: 1em;
}
.entry-count {
color: silver;
font-weight: 100;
font-size: 75%;
}
.active .time {
color: red;
}
.form-error {
transition: opacity 250ms ease-out;
color: red;
}
i {
cursor: pointer;
}
i[disabled] {
opacity: 0.2;
pointer-events: none;
cursor: default;
}