2025-03-01 07:43:59 -05:00
|
|
|
#warningPanel h1,h2,h3,h4,h5,h6 {
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
#confirmButton {
|
|
|
|
position: relative;
|
|
|
|
flex-wrap: wrap;
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
font-weight: bold;
|
2025-03-08 09:26:24 -05:00
|
|
|
border: 1px solid rgb(0, 0, 255);
|
2025-03-01 07:43:59 -05:00
|
|
|
border-radius: 3px;
|
|
|
|
box-shadow: 0px 2px 4px;
|
|
|
|
text-decoration: none;
|
|
|
|
color: black;
|
|
|
|
width: 100px;
|
|
|
|
padding: 10px;
|
|
|
|
padding-left: 30px;
|
|
|
|
padding-right: 30px;
|
|
|
|
margin: auto;
|
|
|
|
}
|
|
|
|
|
|
|
|
#confirmButton:hover {
|
|
|
|
color: black;
|
|
|
|
background-color: rgba(255, 165, 0, .6);
|
|
|
|
}
|
|
|
|
|
|
|
|
#confirmButton:active {
|
|
|
|
box-shadow: 0px 0px 2px;
|
|
|
|
transform: translateY(2px);
|
|
|
|
}
|
|
|
|
|
|
|
|
.sqlOutput {
|
|
|
|
border: 1px solid black;
|
|
|
|
border-radius: 5px;
|
2025-03-10 13:39:48 -04:00
|
|
|
max-width: 400px;
|
2025-03-01 07:43:59 -05:00
|
|
|
padding: 5px;
|
2025-03-09 10:27:33 -04:00
|
|
|
font-family: Arial, Helvetica, sans-serif;
|
2025-03-10 14:13:32 -04:00
|
|
|
margin: auto;
|
2025-03-05 21:08:39 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
.userMessage {
|
|
|
|
text-align: center;
|
|
|
|
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
|
|
|
|
}
|
|
|
|
|
|
|
|
.userMessage a{
|
|
|
|
margin: 10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.subNavLink a {
|
|
|
|
margin: 10px !important;
|
2025-03-09 22:27:06 -04:00
|
|
|
}
|
|
|
|
|