-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
53 lines (48 loc) · 997 Bytes
/
Copy pathstyle.css
File metadata and controls
53 lines (48 loc) · 997 Bytes
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
@import url('https://fonts.googleapis.com/css2?family=Libre+Baskerville&display=swap');
@import url('https://fonts.googleapis.com/css?family=Source+Code+Pro:400,600');
html,
body {
font-family: "Source Code Pro", Consolas, monaco, monospace;
font-family: 'Libre Baskerville', serif;
font-size: 12px;
line-height: 160%;
font-size: 16px;
}
pre {
margin: 0px;
}
.container {
display: inline-flex;
justify-content: space-between;
width: 80%;
height: 80%;
}
.container>div {
margin: 10px;
width: 100%;
_background: #46B980;
padding: 5px;
_color: #fff;
}
ul.breadcrumb {
padding: 10px 16px;
list-style: none;
background-color: #eee;
}
ul.breadcrumb li {
display: inline;
font-size: 18px;
}
ul.breadcrumb li+li:before {
padding: 8px;
color: black;
content: "/\00a0";
}
ul.breadcrumb li a {
color: #0275d8;
text-decoration: none;
}
ul.breadcrumb li a:hover {
color: #01447e;
text-decoration: underline;
}