-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcode.css
57 lines (51 loc) · 810 Bytes
/
code.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
/* code style */
body {
background-color: black;
color: white;
}
h1 {
font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
font-size: 3rem;
}
h3 {
font-family: 'Courier New', Courier, monospace;
color:darkcyan;
font-size: larger;
}
.poem {
border: thin inset gray;
border-radius: 5px;
background-color: darkslategray;
padding: 0.5em 1em;
margin: 1em 0;
}
.js {
font-family: 'Courier New', Courier, monospace;
font-size: medium;
}
.keywd {
color: darkblue;
font-weight: bold;
}
.fn {
font-weight: bold;
color: lightyellow;
}
.fnbody {
font-weight: normal;
}
.op {
font-weight: bold;
color: crimson;
}
.comment {
font-weight: lighter;
color: green;
}
.const {
text-transform: uppercase;
color: lightblue;
}
.tab {
padding-left: 2em;
}