-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
68 lines (57 loc) · 994 Bytes
/
style.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
body {
background-color: #31394c;
color: #ffffff;
font-family: "Roboto Mono", monospace;
font-weight: 300;
font-size: 18px;
}
h1 {
font-size: 48px;
font-family: "Montserrat", sans-serif;
font-weight: 200;
text-align: center;
line-height: 59px;
padding: 0;
margin: 0;
}
table {
border: 0px solid white;
box-shadow: 0 0 5px #fff, 0 0 35px #f2c94c, 0 0 5px #f2c94c inset;
min-width: 50%;
}
th,
td {
padding-top: 5px;
padding-right: 15px;
padding-bottom: 5px;
padding-left: 15px;
vertical-align: top;
}
button {
background: transparent;
padding: 0;
border: none;
margin: 0;
outline: none;
}
.tracker-column {
display: grid;
justify-items: center;
grid-row-gap: 23px;
width: 100%;
padding-top: 25px;
}
.icon {
width: 1.33rem;
}
.icon:hover {
transform: scale(1.3);
}
.task-name:empty {
border: 2px solid rgba(255, 255, 255, 0.5);
border-radius: 5px;
}
[contenteditable="true"]:focus {
border: none;
outline: none;
}