git ssb

16+

Dominic / patchbay



Tree: d6f54a07556edba2c3504ce40341185efe763303

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

827 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 border-color: #0088cc;
37 box-shadow: 0 0 4px #0088cc;
38}
39
40input, textarea {
41 border: 1px solid gainsboro;
42 font-family: sans-serif;
43}
44
45textarea {
46 padding: .5em;
47 font-size: 1em;
48}
49
50textarea:focus {
51 outline: none;
52 border-color: none;
53}
54
55
56`
57

Built with git-ssb-web