-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
79 lines (63 loc) · 1.13 KB
/
style.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
html{
font-size: 110%;
}
body {text-align: center;}
/*h3 {max-width: 20%; margin: 1em auto; text-align: left;}*/
h1 {font-family: 'Courier New', Courier, monospace; font-weight:bold;}
h2, h3 {font-family: Arial;}
/* unvisited link */
a:link {
color: rgb(0, 0, 238);
}
/* visited link */
a:visited {
color: rgb(0, 0, 238);
}
/* mouse over link */
a:hover {
font-weight: bold;
}
/* selected link */
a:active {
color: rgb(0, 0, 238);
}
/*menu*/
header ul {
list-style-type: none;
font-family: Arial;
text-align: center;
margin: 0 auto;
padding: 10px 0;
font-size: 1.5em;
}
header li {
padding: 5px;
display: inline;
margin-left: 0;
margin-right: 0;
font-weight: bold;
}
header li a {
text-decoration: none;
}
header #selected {
font-weight: bold;
text-decoration: underline;
color: black;
pointer-events: none;
cursor: default;
}
/*rules*/
ol#rules{
/*list-style-type: none;*/
}
ul#roles, ul#faq{
list-style-type: none;
}
ol#rules li, ul#roles li{
font-weight: bold;
text-align: left;
}
ol#rules p, ul#roles p{
text-align: left;
}