-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathstyles.css
More file actions
76 lines (67 loc) · 1.44 KB
/
styles.css
File metadata and controls
76 lines (67 loc) · 1.44 KB
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
65
66
67
68
69
70
71
72
73
74
75
76
@media screen {
body {
background: url('/bg.png') top left repeat #ebeef2;
font: normal 14px 'Roboto',arial,sans-serif;
}
.layer {
position: absolute;
left: -3px;
right: -3px;
top: -3px;
bottom: 1px;
background-color: white;
border-radius: 4px;
border: 1px solid #ddd;
box-shadow: 0px 0px 5px 0px #e4e4e4;
}
.stack {
position: fixed;
left: 1em;
top: 1em;
right: 1em;
bottom: 1.8em;
}
.flag {
position: fixed;
right: 0px;
left: 0px;
bottom: 1em;
height: 0.8em;
text-align: center;
color: #aaa;
font-family: 'Roboto',arial,sans-serif;
font-size: 14px;
}
a:link, a:visited, a:active {
color: #aaa;
text-decoration: none;
word-break: break-all;
}
*:focus {
outline: none;
}
.content {
width: 100%;
height: 100%;
min-height: 100%;
resize: none;
overflow-y: auto;
border-radius: 3px;
box-sizing: border-box;
border: none;
padding: 0.728em 1em;
color: #333;
font-size: 1.1em;
}
.print {
display: none;
}
}
@media print {
.container {
display: none;
}
.print {
font-size: 10px;
}
}