1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374 |
- .content {
- display: flex;
- flex-direction: column;
- margin: calc(1.5rem + 15px);
- & > :first-child {
- margin-bottom: 1rem;
- }
- .title {
- font-size: 1.75rem;
- font-weight: 500;
- line-height: 1.2;
- }
- .downtime {
- display: flex;
- align-items: center;
- justify-content: flex-start;
- width: 100%;
- padding: 1.25rem;
- margin-bottom: 1rem;
- color: #ffffff;
- background-color: #dc3545;
- border: 1px solid rgba(0, 0, 0, 0.125);
- border-radius: 0.25rem;
- .downtimeText {
- margin: 0 0 0 10px;
- font-size: 1.5rem;
- font-weight: 500;
- line-height: 1.2;
- }
- }
- .card {
- display: flex;
- flex-direction: column;
- word-wrap: break-word;
- background-color: #ffffff;
- background-clip: border-box;
- border: 1px solid rgba(0, 0, 0, 0.125);
- border-radius: 0.25rem;
- .cardTitle {
- font-weight: 500;
- line-height: 1.2;
- & > h5 {
- margin-bottom: 0.75rem;
- font-size: 1.25rem;
- }
- & > h6 {
- font-size: 1rem;
- }
- }
- .cardHeader {
- & > :first-child {
- border-radius: calc(0.25rem - 1px) calc(0.25rem - 1px) 0 0;
- }
- padding: 0.75rem 1.25rem;
- margin-bottom: 0;
- background-color: rgba(0, 0, 0, 0.03);
- border-bottom: 1px solid rgba(0, 0, 0, 0.125);
- }
- .cardBody {
- padding: 1.25rem;
- & > ul {
- padding-left: 0;
- margin: 0;
- list-style: none;
- & > li {
- padding-bottom: 1rem;
- margin-bottom: 1rem;
- border-bottom: 1px solid #dee2e6;
- }
- }
- }
- }
- }
|