-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathstylesheet.css
48 lines (37 loc) · 1.22 KB
/
stylesheet.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
@import url('symbola.css');
@import url('emojione.css');
body, #buttons button, textarea { font-family: emojiOne, sans-serif, Symbola;}
html {overflow-y: scroll;}
#panel {
position: sticky;
top: 0;
background: white;
padding-bottom: 20px;
box-shadow: 0 0 5px 5px white;
}
#panel fieldset { display: inline; }
#input {
font-size: 200%;
width:100%;
}
#buttons button { font-size: 400%; background: none; border: none; min-width: 1ex}
div.big { font-size: 200%; text-align: center; }
#buttons h2 {
text-shadow: 2px 2px 2px silver;
}
#buttons {padding: 0 10%}
#buttons button {
box-shadow: 0 0 3px silver, 0 0 1px silver inset;
border-radius: 5px;
margin: 10px;
transition:box-shadow 0.5s, background 0.5s;
}
#buttons button:hover {
box-shadow: 0px 0px 18px blue, 0 0 8px blue inset;
transition:box-shadow 0.5s, background 0.5s;
background: #ddf;
}
#buttons.list button:after {content: " – " attr(title); font-size: 25%;}
#buttons.list button {display: block; border-bottom: 1px solid silver; width: 100%; text-align: start}
#input.fixed { position: fixed; top: 10px; left: 10px; right: 10px; opacity: 0.9; width: 90%; margin: auto; }
a[onclick] { text-decoration: underline; color: blue; cursor: pointer}