-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathstyles.css
83 lines (83 loc) · 1.42 KB
/
styles.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
html,
body {
width: 100%;
height: 100%;
font-family: sans-serif;
}
body {
font-family: 'Roboto Condensed', sans-serif;
margin: 0;
padding: 0;
}
h4 {
font-weight: 700;
}
.main-container {
position: relative;
width: 650px;
margin: auto;
padding: 32px 8px 16px;
box-sizing: border-box;
}
.sp-count-container {
display: flex;
align-items: center;
justify-content: center;
font-size: 80px;
color: #009688;
}
.task-properties-container {
margin: 16px auto;
}
.task-property {
margin-bottom: 32px;
}
.task-property-name {
font-size: 20px;
margin-bottom: 16px;
font-family: 'Roboto', sans-serif;
}
.task-property-values {
display: flex;
justify-content: space-between;
}
.task-property-value {
display: flex;
flex-direction: column;
cursor: pointer;
color: #ddd;
transition: color .3s ease;
}
.task-property-value input {
display: none
}
.task-property-value span {
font-size: 30px;
user-select: none;
}
.task-property-value input:checked + span {
color: #000;
}
.sp-count-description {
font-size: 15px;
margin-top: 8px;
line-height: 18px;
height: 18px;
text-align: center;
font-style: italic;
}
.github-link {
width: 32px;
height: 32px;
display: block;
position: absolute;
right: 0;
top: 8px;
}
.github-link img {
width: 100%;
height: 100%;
}
li {
margin-bottom: 8px;
}