-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmystyle.css
100 lines (86 loc) · 1.44 KB
/
mystyle.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
header {
text-align: right;
font-family: verdana;
font-size: 20px;
position: fixed;
width: 100%;
top: 0px;
left: 0px;
background: black;
margin: 0 auto;
padding: 0;
}
body {
margin-top: 56px;
font-family: verdana;
min-width: 800px;
max-width: 1200px;
}
ul[place="header"] {
padding: 10px;
}
ul[place="body"] {
margin: 20px;
padding: 5px;
}
a {
color: grey;
text-decoration: none;
}
/* mouse over link */
a:hover, a:hover code {
color: rgb(185,0,0);
}
a[id="anchor"] {
display: block;
position: relative;
top: -75px;
}
li[place="header"] {
display: inline;
text-align: right;
padding: 0px 10px 0px 0px;
}
li[place="body"] {
font-family: verdana;
padding: 0px 0px 0px 10px;
}
h2::before {
width: 0.85em;
height:0.85em;
background: rgb(185,0,0);
display:inline-block;
content: "";
margin-right: 10px;
}
h2 {
font-family: verdana;
padding: 10px 0px 0px 0px;
}
h4::before {
width: 0.85em;
height:0.85em;
background: rgb(185,0,0);
display:inline-block;
content: "";
margin-right: 10px;
}
h4 {
font-family: verdana;
padding: 10px 0px 0px 0px;
}
p {
font-family: verdana;
}
code {
font-family: Consolas,
Monaco,
Lucida Console,
Liberation Mono,
DejaVu Sans Mono,
Bitstream Vera Sans Mono,
Courier New,
monospace,
serif;
color: darkblue;
}