git ssb

16+

Dominic / patchbay



Tree: fa8ed712ab5bde9f525c730497fbd46de5a352c9

Files: fa8ed712ab5bde9f525c730497fbd46de5a352c9 / app / styles / css / global.js

770 bytesRaw
1const nest = require('depnest')
2const { assign } = Object
3
4exports.gives = nest('styles.css')
5
6exports.create = function (api) {
7 return nest('styles.css', (sofar = {}) => {
8 return assign(sofar, { globalStyles })
9 })
10}
11
12const globalStyles = `
13body {
14 font-family: helvetica, sans-serif;
15 font-size: 14px;
16 line-height: 1.4;
17 color: #222;
18}
19
20* {
21 word-break: break-word;
22}
23
24a:link, a:visited, a:active {
25 color: #0088cc;
26 text-decoration: none;
27}
28
29a:hover, a:focus {
30 color: #005580;
31 text-decoration: underline;
32}
33
34input:focus, .compose:focus {
35 outline: none;
36}
37
38input, textarea {
39 border: 1px solid gainsboro;
40 font-family: sans-serif;
41}
42
43textarea {
44 padding: .5em;
45 font-size: 1em;
46}
47
48textarea:focus {
49 outline: none;
50 border-color: none;
51}
52
53
54`
55

Built with git-ssb-web