-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.css
More file actions
63 lines (63 loc) · 1.01 KB
/
index.css
File metadata and controls
63 lines (63 loc) · 1.01 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
* {
padding: 0;
margin: 0;
box-sizing: border-box;
}
body {
font-size: 16px;
font-family: "Helvetica Neue", "Helvetica", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "微软雅黑", "Arial", "sans-serif";
-webkit-app-region: drag;
}
.demo-row:after {
content: " ";
display: table;
clear: both;
}
.demo-grid {
float: left;
}
.grid-1 {
width: 16.666666666666664%;
}
.grid-2 {
width: 58.333333333333336%;
}
.grid-3 {
width: 25%;
}
.demo {
padding: 0.5rem 0;
position: relative;
margin-bottom: 0.5rem;
cursor: pointer;
-webkit-user-select: none;
}
.demo-cursor {
position: absolute;
top: 0;
left: 0;
width: 0%;
height: 100%;
z-index: -1;
background: #f5f5f5;
border-radius: 4px;
}
.demo-datetime {
color: #999;
font-size: 0.8rem;
padding: 0.2rem 0;
text-align: center;
}
.demo-completed {
text-align: right;
color: #888;
padding: 0.1rem 0.5rem 0.1rem 0;
font-size: 0.8rem;
}
.demo-name {
color: #555;
font-size: 0.9rem;
}
.demo-author {
font-size: 0.7rem;
}