This repository has been archived by the owner on Nov 29, 2024. It is now read-only.
forked from krnbatta/pathfinder
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
119 lines (114 loc) · 1.64 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
#info{
padding: 0 20px;
}
#demo-heading{
text-decoration: underline;
}
button{
border: none;
background: transparent;
font-weight: bold;
}
button:hover{
text-decoration: underline;
cursor: pointer;
}
.examples{
display: flex;
flex-wrap: wrap;
}
.example{
max-width: 50%;
border-left: 1px solid #cdcdcd;
padding: 10px;
}
.example:nth-child(-n + 2) {
border-bottom: 1px solid #cdcdcd;
}
.example p{
display: flex;
}
.example form{
display: inline-block;
}
.large-map-error{
color: red;
font-size: 12px;
font-weight: bold;
position: relative;
top: -2px;
}
body{
position: absolute;
width: 100%;
height: 100%;
margin: 0;
}
#pathfinder{
background: #fff;
}
#header{
border-bottom: 1px solid;
background: aliceblue;
padding: 2px 10px;
min-height: 25px;
}
#menu{
position: absolute;
z-index: 1;
}
#header h3{
margin: 0;
display: flex;
align-items: center;
justify-content: center;
position: absolute;
width: 100%;
text-align: center;
font-weight: bold;
}
#footer{
border-top: 1px solid;
background: aliceblue;
padding: 2px 10px;
}
#footer p{
margin: 0;
display: flex;
align-items: center;
justify-content: center;
}
#footer .footer-credits{
justify-content: space-between;
}
#pathfinder{
position: absolute;
width: 100%;
height: 100%;
display: flex;
flex-flow: column nowrap;
}
#header{
flex: 1;
}
#body{
flex: 18;
display: flex;
flex-flow: column nowrap;
overflow: scroll;
}
#footer{
flex: 1;
}
.github-corner{
display: none;
}
.sidebar-toggle{
position: absolute !important;
}
.sidebar{
position: absolute !important;
}
.content{
overflow: scroll;
}