-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
df58de7
commit 843af6c
Showing
3 changed files
with
139 additions
and
19 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,32 +1,92 @@ | ||
body { | ||
font-family: Arial, sans-serif; | ||
font-family: 'Arial', sans-serif; | ||
margin: 0; | ||
padding: 0; | ||
background-color: #f0f0f0; | ||
} | ||
|
||
header { | ||
background-color: #333; | ||
background-color: #4a90e2; | ||
color: white; | ||
text-align: center; | ||
padding: 1em; | ||
box-shadow: 0 2px 4px rgba(0,0,0,0.1); | ||
} | ||
|
||
nav { | ||
padding: 1em; | ||
background-color: #f0f0f0; | ||
background-color: #ffffff; | ||
display: flex; | ||
justify-content: center; | ||
align-items: center; | ||
box-shadow: 0 2px 4px rgba(0,0,0,0.1); | ||
} | ||
|
||
select, input, button { | ||
font-size: 1em; | ||
padding: 0.5em; | ||
margin: 0 0.5em; | ||
} | ||
|
||
#searchButton { | ||
background-color: #4a90e2; | ||
color: white; | ||
border: none; | ||
padding: 0.5em 1em; | ||
cursor: pointer; | ||
transition: background-color 0.3s; | ||
} | ||
|
||
#searchButton:hover { | ||
background-color: #3a7bc8; | ||
} | ||
|
||
main { | ||
display: flex; | ||
padding: 1em; | ||
} | ||
|
||
#graph { | ||
width: 70%; | ||
height: 600px; | ||
background-color: #ffffff; | ||
border-radius: 8px; | ||
box-shadow: 0 2px 4px rgba(0,0,0,0.1); | ||
} | ||
|
||
#infoPanel { | ||
width: 30%; | ||
padding: 1em; | ||
background-color: #f9f9f9; | ||
background-color: #ffffff; | ||
border-radius: 8px; | ||
box-shadow: 0 2px 4px rgba(0,0,0,0.1); | ||
margin-left: 1em; | ||
overflow-y: auto; | ||
max-height: 600px; | ||
} | ||
|
||
#infoPanel h2 { | ||
color: #4a90e2; | ||
} | ||
|
||
#infoPanel h3 { | ||
color: #333; | ||
} | ||
|
||
#infoPanel ul { | ||
padding-left: 1.5em; | ||
} | ||
|
||
#infoPanel li { | ||
margin-bottom: 0.5em; | ||
} | ||
|
||
.node-tooltip { | ||
position: absolute; | ||
background-color: rgba(0, 0, 0, 0.7); | ||
color: white; | ||
padding: 5px; | ||
border-radius: 3px; | ||
font-size: 12px; | ||
pointer-events: none; | ||
} |