This repository has been archived by the owner on Feb 14, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
141 lines (117 loc) · 2.27 KB
/
styles.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
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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
html {
font-size: 100%;
overflow-y: scroll;
-webkit-text-size-adjust: 100%;
-ms-text-size-adjust: 100%;
}
body {
margin: auto;
color: #444;
max-width: 42em;
font-family: "Century Schoolbook L", Roboto, Georgia, Palatino,
"Palatino Linotype", Times, "Times New Roman", serif;
}
a,
a:visited,
a:active {
color: blue;
}
a:hover {
color: black;
}
.frag {
word-wrap: normal;
display: inline-block;
}
@media only screen and (min-width: 480px) {
body {
font-size: 16px;
}
}
@media only screen and (min-width: 768px) {
body {
font-size: 18px;
}
}
.spacer {
margin-left: 1em;
}
.idViewer {
font-family: monospace;
}
.topNavBar {
font-family: monospace;
color: rgba(66, 66, 66, 0.7);
background: rgba(247, 251, 240, 0.7);
padding: 0.5em;
border-bottom: 1px solid rgba(189, 192, 183, 0.4);
}
.noteTopBar {
font-family: monospace;
border-top-left-radius: 0.22em;
border-top-right-radius: 0.22em;
background: rgba(247, 251, 240, 0.7);
margin-top: 0.5em;
font-size: 0.8em;
color: rgba(66, 66, 66, 0.7);
overflow-x: auto;
overflow-y: hidden;
white-space: nowrap;
text-align: right;
border-bottom: 1px solid rgba(189, 192, 183, 0.4);
}
.noteTopBar * {
align-content: right;
display: inline-block;
}
.note {
border-bottom-left-radius: 0.22em;
border-bottom-right-radius: 0.22em;
background: #f7fbf0;
padding-top: 0.5em;
padding-bottom: 0.5em;
padding-left: 1em;
padding-right: 1em;
}
.codeMirrorContainer {
border-bottom-left-radius: 0.22em;
border-bottom-right-radius: 0.22em;
padding: 0.5em;
background: #f7fbf0;
margin-bottom: 1em;
}
.deleteButton {
font-family: monospace;
cursor: pointer;
border: 0px solid #ffffff;
padding: 0.5em;
height: 100%;
color: rgba(66, 66, 66, 0.7);
background-color: rgba(0, 0, 0, 0);
}
.deleteButton:hover {
background: rgba(217, 221, 210, 0.6);
}
.deleteButton:active {
background-color: rgba(0, 0, 0, 0);
}
.fromHeader {
font-family: monospace;
background: rgba(247, 251, 240, 0.7);
padding: 0.5em;
font-size: 0.8em;
color: rgba(66, 66, 66, 0.7);
border-bottom: 1px solid rgba(189, 192, 183, 0.4);
}
.fromLink {
padding-right: 0.5em;
}
.noteEditor {
resize: vertical;
}
textarea,
pre {
-moz-tab-size: 4;
-o-tab-size: 4;
tab-size: 4;
}