-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathstyle.css
More file actions
64 lines (53 loc) · 957 Bytes
/
Copy pathstyle.css
File metadata and controls
64 lines (53 loc) · 957 Bytes
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
body * {
box-sizing: border-box;
}
body, html {
padding: 0;
margin: 0;
height: 100%;
font-family: "Menlo", "Consolas", monospace, sans-serif;
}
input {
font-family: "Menlo", "Consolas", monospace, sans-serif;
border: none;
inset: none;
background: none;
box-shadow: none;
outline: none;
}
button {
font-family: "Menlo", "Consolas", monospace, sans-serif;
background: none;
border: none;
outline: none;
}
button:disabled {
opacity: 0.4;
}
a {
color: inherit;
}
a:visited {
color: inherit;
}
a:pressed {
color: inherit;
}
.compose {
overflow: hidden;
height: 100%;
}
.theme input[type="checkbox"] {
display: none;
}
.theme label {
/* todo: move to proper declaration in kotlin code */
display: block;
padding: 5px 15px;
border-radius: 8px;
transition: all 200ms ease-out;
transition-property: color, background;
}
h1 {
margin: 0;
}