-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
49 lines (42 loc) · 861 Bytes
/
Copy pathstyle.css
File metadata and controls
49 lines (42 loc) · 861 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
body {
font-family: Arial, sans-serif;
margin: 20px;
background-color: #f0f2f5;
color: #333;
line-height: 1.6;
}
h1, h2, h3 {
color: #2c3e50;
}
button {
padding: 12px 25px;
font-size: 16px;
background-color: #28a745; /* A bit greener for 'free' feel */
color: white;
border: none;
border-radius: 5px;
cursor: pointer;
transition: background-color 0.3s ease;
}
button:hover {
background-color: #218838;
}
#roadInfo {
background-color: white;
padding: 25px;
border-radius: 8px;
box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}
#roadInfo p {
margin-bottom: 8px;
}
#roadInfo strong {
color: #555;
}
pre {
background-color: #e9e9e9;
padding: 10px;
border-radius: 5px;
white-space: pre-wrap;
word-break: break-all;
}