-
Notifications
You must be signed in to change notification settings - Fork 1
/
app.css
49 lines (43 loc) · 879 Bytes
/
app.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
.word{
padding:0.25em;
background-color: #afafaf;
border-radius:0.25em;
line-height: 2.0em;
margin-right:0.25em;
}
.prime{
background-color: yellow;
}
.palindromic{
background-color: orange;
}
.emirp{
background-color: red;
}
.reversed_prime{
background-color: lightgreen;
}
.fibonacci_number{
border: 1px solid blue;
}
.too_big{
border: 1px dotted black !important;
background-color: #cfcfcf !important;
}
.too_big::before{
content:'~ '
}
pre {
white-space: pre-wrap; /* Since CSS 2.1 */
white-space: -moz-pre-wrap; /* Mozilla, since 1999 */
white-space: -pre-wrap; /* Opera 4-6 */
white-space: -o-pre-wrap; /* Opera 7 */
word-wrap: break-word; /* Internet Explorer 5.5+ */
}
.text-muted{
color: gray;
}
.sep-left{
border-left: 1px solid gray;
padding-left: 0.25em;
}