git ssb

16+

Dominic / patchbay



Tree: 17137bf4950b512a952c46b8d1a92203756ed979

Files: 17137bf4950b512a952c46b8d1a92203756ed979 / app / styles / css / global.js

1888 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: sans-serif;
15 color: #222;
16}
17
18.emoji {
19 width: 16px;
20 height: 16px;
21}
22
23h1, h2, h3, h4, h5, h6, p, ul, ol {
24 margin-top: .35em;
25}
26
27h1 { font-size: 1.2em; }
28h2 { font-size: 1.18em; }
29h3 { font-size: 1.15em; }
30h4 { font-size: 1.12em; }
31h5 { font-size: 1.1em; }
32h6 { font-size: 1em; }
33
34* {
35 word-break: break-word;
36}
37
38a:link, a:visited, a:active {
39 color: #0088cc;
40 text-decoration: none;
41}
42
43a:hover,
44a:focus {
45 color: #005580;
46 text-decoration: underline;
47}
48
49pre {
50 white-space: pre-wrap;
51 word-wrap: break-word;
52}
53
54p {
55 margin-top: .35ex;
56}
57
58hr {
59 border: solid #eee;
60 clear: both;
61 border-width: 1px 0 0;
62 height: 0;
63 margin-bottom: .9em;
64}
65
66input, textarea {
67 border: none;
68 border-radius: .2em;
69 font-family: sans-serif;
70}
71
72input:focus, .compose:focus, button:focus {
73 outline: none;
74 border-color: #0088cc;
75 box-shadow: 0 0 4px #0088cc;
76}
77
78textarea {
79 padding: .5em;
80 font-size: 1em;
81}
82
83textarea:focus {
84 outline: none;
85 border-color: none;
86}
87
88button {
89 background: #fff;
90 color: #666;
91 border: 1px solid #bbb;
92 border-radius: .5em;
93 padding: .7em;
94 margin: .5em;
95 cursor: pointer;
96 text-transform: uppercase;
97 font-weight: bold;
98 font-size: .7em;
99}
100
101button:hover {
102 background: #ccc;
103 border: 1px solid #bbb;
104}
105
106/* TextNodeSearcher highlights */
107
108highlight {
109 background: #ff8;
110}
111
112/* lightbox - used in message-confirm */
113
114div.lightbox {
115 position: fixed;
116 left: 0px;
117 right: 0px;
118 top: 50px;
119 overflow: auto;
120 width: 600px;
121 max-width: 100%;
122 padding: 25px;
123 margin: auto;
124 z-index: 2;
125 background: #f5f5f5;
126 border: 1px solid #eee;
127 border-radius: .2em;
128}
129`
130
131

Built with git-ssb-web