nws-site/src/App.css

77 lines
1.1 KiB
CSS
Raw Normal View History

.App {
2022-02-04 01:14:34 +00:00
display: flex;
align-items: center;
flex-direction: column;
}
2022-10-22 21:21:03 +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;
padding: 3px;
}
button {
border-radius: 10px !important;
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;
padding: .75rem;
}
}
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