2022-02-03 23:58:40 +00:00
|
|
|
.App {
|
2022-02-04 01:14:34 +00:00
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
flex-direction: column;
|
2022-02-03 23:58:40 +00:00
|
|
|
}
|
2022-10-22 21:21:03 +00:00
|
|
|
|
2022-11-10 20:12:43 +00:00
|
|
|
input {
|
|
|
|
border-radius: 10px;
|
|
|
|
border-color: #000;
|
|
|
|
border-width: 1px;
|
|
|
|
border-style: solid;
|
2023-01-21 22:52:35 +00:00
|
|
|
margin-bottom: 1px;
|
|
|
|
display: block;
|
2022-11-10 20:12:43 +00:00
|
|
|
padding: 3px;
|
|
|
|
}
|
|
|
|
|
|
|
|
button {
|
2023-01-17 07:06:38 +00:00
|
|
|
border-radius: 10px !important;
|
2022-11-10 20:12:43 +00:00
|
|
|
border-width: 0px;
|
|
|
|
|
|
|
|
background-color: cornflowerblue;
|
|
|
|
color: white;
|
|
|
|
|
|
|
|
margin-top: 10px;
|
|
|
|
margin-bottom: 10px;
|
|
|
|
padding: 3px
|
|
|
|
}
|
|
|
|
|
|
|
|
p {
|
|
|
|
margin: 0 !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
.error-banner {
|
|
|
|
background-color: #f08080;
|
|
|
|
border-radius: 10px;
|
|
|
|
padding: 3px;
|
|
|
|
height: max-content;
|
|
|
|
}
|
|
|
|
|
2022-10-22 21:21:03 +00:00
|
|
|
.low-severity {
|
|
|
|
background-color: #98fb98
|
|
|
|
}
|
|
|
|
|
|
|
|
.med-severity {
|
|
|
|
background-color: #eee8aa
|
|
|
|
}
|
|
|
|
|
|
|
|
.high-severity {
|
|
|
|
background-color: #f08080
|
|
|
|
}
|
|
|
|
|
2022-10-23 01:13:52 +00:00
|
|
|
.severity-label {
|
|
|
|
border-radius: 10px;
|
|
|
|
text-align: center;
|
|
|
|
padding-left: 10px;
|
|
|
|
padding-right: 10px;
|
|
|
|
padding-top: 5px;
|
|
|
|
padding-bottom: 5px;
|
|
|
|
}
|
|
|
|
|
2023-01-24 02:51:30 +00:00
|
|
|
|
|
|
|
@media only screen
|
|
|
|
and (max-width: 992px) {
|
|
|
|
.nws-card-md {
|
|
|
|
border-radius: 20px;
|
|
|
|
background-color: #eee;
|
2023-01-25 21:47:27 +00:00
|
|
|
padding-bottom: 2rem;
|
2023-01-24 02:51:30 +00:00
|
|
|
}
|
|
|
|
}
|
2022-10-23 01:13:52 +00:00
|
|
|
.nws-card {
|
2022-10-22 21:21:03 +00:00
|
|
|
border-radius: 20px;
|
2022-10-23 01:13:52 +00:00
|
|
|
background-color: #eee;
|
2022-10-22 21:21:03 +00:00
|
|
|
padding: .75rem;
|
|
|
|
}
|
|
|
|
|
2022-10-23 01:13:52 +00:00
|
|
|
|