BlazorStart/Start/Client/wwwroot/css/app.css

63 lines
939 B
CSS
Raw Normal View History

2021-11-13 03:21:59 +00:00
@import url('open-iconic/font/css/open-iconic-bootstrap.min.css');
html, body {
font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
2021-11-13 03:21:59 +00:00
}
a, .btn-link {
color: #0366d6;
2021-11-13 03:21:59 +00:00
}
.btn-primary {
color: #fff;
background-color: #1b6ec2;
border-color: #1861ac;
2021-11-13 03:21:59 +00:00
}
.content {
padding-top: 1.1rem;
2021-11-13 03:21:59 +00:00
}
.valid.modified:not([type=checkbox]) {
outline: 1px solid #26b050;
2021-11-13 03:21:59 +00:00
}
.invalid {
outline: 1px solid red;
2021-11-13 03:21:59 +00:00
}
.validation-message {
color: red;
2021-11-13 03:21:59 +00:00
}
#blazor-error-ui {
background: lightyellow;
bottom: 0;
box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
display: none;
left: 0;
padding: 0.6rem 1.25rem 0.7rem 1.25rem;
position: fixed;
width: 100%;
z-index: 1000;
}
#blazor-error-ui .dismiss {
cursor: pointer;
position: absolute;
right: 0.75rem;
top: 0.5rem;
}
.container {
padding: 0.4rem;
}
2021-11-30 05:22:14 +00:00
.appLoadingContainer {
height: 100vh;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}