-
Notifications
You must be signed in to change notification settings - Fork 39
/
main.css
89 lines (75 loc) · 1.16 KB
/
main.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
html,
body {
text-align: center;
max-width: 600px;
margin: auto;
font-family: sans-serif;
background-color: #f0f2f5 !important;
}
.card {
margin: 10px;
padding: 10px;
background-color: #ffffff;
}
.card header h3 {
text-align: left;
margin: 6px 8px;
}
.card div {
margin: 2px;
}
.description,
.note {
text-align: left;
margin: 12px;
}
.note {
font-size: small;
}
.controller {
position: -webkit-sticky;
position: sticky;
top: 40px;
z-index: 10;
}
.mime-select {
width: 280px;
}
.timeslice-input {
width: 100px;
}
.buttons {
display: flex;
flex-wrap: wrap;
justify-content: center;
gap: 5px;
}
.github-corner {
position: -webkit-sticky;
position: sticky;
top: 0px;
z-index: 10;
background-color: #151513;
color: #ffffff;
text-decoration: none;
display: flex;
align-content: flex-end;
justify-content: flex-end;
flex-direction: row;
white-space: nowrap;
overflow: hidden;
height: 40px;
}
.github-corner span {
margin-top: 10px;
}
.github-corner :last-child {
margin-right: 3%;
}
.log {
font-family: monospace;
text-align: left;
white-space: pre;
overflow-x: auto;
font-size: 12px;
}