-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathremote.css
96 lines (90 loc) · 1.4 KB
/
remote.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
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
@import "//necolas.github.io/normalize.css/3.0.2/normalize.css";
@import "//code.cdn.mozilla.net/fonts/fira.css";
body {
font-family: "Fira Mono", monospace;
font-size: 16px;
line-height: 1.5;
color: #444;
}
h1, h2, h3 {
font-weight: 400;
}
::-webkit-input-placeholder {
color: #81C784;
}
:-moz-placeholder {
color: #81C784;
}
::-moz-placeholder {
color: #81C784;
}
:-ms-input-placeholder {
color: #81C784;
}
a {
color: #388E3C;
font-weight: 500;
transition: all 0.1s ease-in-out;
}
a:hover {
color: #000;
}
header {
position: fixed;
top: 0;
left: 0;
right: 0;
background-color: #388E3C;
color: white;
padding: 20px;
}
header input {
border-width: 0;
background-color: transparent;
outline: none;
}
header a {
color: white;
}
.content {
margin-top: 64px;
}
.content p {
padding: 20px;
}
.jobs {
width: 100%;
}
.jobs th {
padding: 15px 20px;
text-align: left;
font-weight: 400;
color: #999;
}
.jobs td {
padding: 15px 20px;
transition: all 0.1s ease-in-out;
}
.jobs thead th,
.jobs tr:nth-child(2n) {
background-color: #F6F6F6;
}
.jobs tr:hover td {
color: #FFF;
background-color: #66BB6A;
}
.jobs tr:hover td a {
color: #FFF;
}
.jobs tr.visited td {
text-decoration: line-through;
}
.jobs tr td a.remove {
color: #FFF;
background-color: #388E3C;
text-decoration: inherit;
padding: 0 5px;
}
.jobs tr td a.remove:hover {
background-color: #000;
}