* fixed warnings for overriden node and edge colors * fixed warnings for edges connecting the wrong node types * removed tool tip from color scheme * changed names in project setup screen
30 lines
418 B
CSS
30 lines
418 B
CSS
#projectButton {
|
|
background: white;
|
|
border: 1px solid lightgray;
|
|
border-radius: 10px;
|
|
font-size: 17pt;
|
|
}
|
|
|
|
#projectButton:hover {
|
|
background: #2D3F85;
|
|
color: white;
|
|
}
|
|
|
|
#recentButton {
|
|
background: none;
|
|
border: none;
|
|
color: black;
|
|
font-size: 12pt;
|
|
}
|
|
|
|
#recentButton:hover {
|
|
background-color: rgba(45, 63, 133, 70);
|
|
border-radius: 10px;
|
|
}
|
|
|
|
#recentLabel {
|
|
color: black;
|
|
font-size: 16pt;
|
|
font-weight: bold;
|
|
}
|