-
Notifications
You must be signed in to change notification settings - Fork 4
/
example.css
84 lines (70 loc) · 1.09 KB
/
example.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
body {
background-color: white;
}
ul {
list-style-type: disc;
}
a {
color: blue;
font-family: sans-serif;
font-weight: bold;
}
.jumbotron {
background-color: grey;
}
pre {
background-color: grey;
}
.jumbotron > h1{
color: black;
font-family: sans-serif;
font-weight: bold;
text-transform: uppercase;
font-size: 50px;
}
h1 {
color: black;
font-family: sans-serif;
font-weight: bold;
text-transform: uppercase;
font-size: 40px;
}
p {
color: black;
font-family: sans-serif;
}
h3 {
color: black;
font-family: sans-serif;
font-weight: bold;
font-size: 30px;
}
h4 {
color: grey;
font-family: sans-serif;
font-weight: bold;
text-transform: uppercase;
font-size: 20px;
}
.dictum-button {
background-color: white;
border-color: black;
color: black;
margin-right: 10px;
}
.dictum-button > p {
font-family: sans-serif;
text-transform: uppercase;
display: inline;
}
.dictum-button:hover {
background-color: transparent;
border-color: blue;
color: blue;
}
span.lit, span.kwd {
color: green;
}
span.pun, span.str {
color: black;
}