| 1 |
#sequra-logs-container { |
| 2 |
display: grid; |
| 3 |
} |
| 4 |
|
| 5 |
#sequra-logs-content { |
| 6 |
width: 100%; |
| 7 |
min-height: 500px; |
| 8 |
font-family: monospace; |
| 9 |
} |
| 10 |
|
| 11 |
.sequra-log__content-wrapper { |
| 12 |
margin: 2rem 0; |
| 13 |
position: relative; |
| 14 |
} |
| 15 |
|
| 16 |
.sequra-logs__title { |
| 17 |
position: absolute; |
| 18 |
top: 8px; |
| 19 |
font-weight: 700; |
| 20 |
font-size: 18px; |
| 21 |
left: 8px; |
| 22 |
opacity: .75; |
| 23 |
transition: all .3s; |
| 24 |
} |
| 25 |
|
| 26 |
.sequra-logs__error, |
| 27 |
.sequra-logs__success { |
| 28 |
font-weight: 400; |
| 29 |
font-size: 14px; |
| 30 |
} |
| 31 |
|
| 32 |
.sequra-logs__error { |
| 33 |
color: #dc3232; |
| 34 |
} |
| 35 |
|
| 36 |
.sequra-logs__success { |
| 37 |
color: #2e7d32; |
| 38 |
} |
| 39 |
|
| 40 |
#sequra-logs-content.active+.sequra-logs__title, |
| 41 |
#sequra-logs-content:focus+.sequra-logs__title { |
| 42 |
top: -24px; |
| 43 |
font-size: 14px; |
| 44 |
left: 0; |
| 45 |
opacity: 1; |
| 46 |
} |
| 47 |
|
| 48 |
.sequra-log__actions { |
| 49 |
display: flex; |
| 50 |
justify-content: center; |
| 51 |
gap: 1rem; |
| 52 |
} |
| 53 |
|
| 54 |
#sequra-logs-container .button { |
| 55 |
display: flex; |
| 56 |
align-items: center; |
| 57 |
justify-content: center; |
| 58 |
padding: .25rem 1rem; |
| 59 |
min-width: 100px; |
| 60 |
} |
| 61 |
|
| 62 |
.button.button-danger, |
| 63 |
.button.button-danger:focus { |
| 64 |
background-color: #dc3232; |
| 65 |
color: #fff; |
| 66 |
border-color: #dc3232; |
| 67 |
text-decoration: none; |
| 68 |
text-shadow: none; |
| 69 |
} |
| 70 |
|
| 71 |
.button.button-danger:hover { |
| 72 |
background: #b32d2e; |
| 73 |
border-color: #b32d2e; |
| 74 |
color: #fff; |
| 75 |
} |
| 76 |
|
| 77 |
.button.button-danger:focus { |
| 78 |
box-shadow: 0 0 0 1px #fff, 0 0 0 3px #dc3232; |
| 79 |
} |
| 80 |
|
| 81 |
.sequra-modal::backdrop { |
| 82 |
background-color: #0000002e; |
| 83 |
} |
| 84 |
|
| 85 |
.sequra-modal { |
| 86 |
border: none; |
| 87 |
border-radius: 4px; |
| 88 |
box-shadow: 0px 0px 4px #0000002e; |
| 89 |
padding: 1rem; |
| 90 |
max-width: 375px; |
| 91 |
} |
| 92 |
|
| 93 |
.sequra-modal__title, |
| 94 |
.sequra-modal__subtitle { |
| 95 |
display: block; |
| 96 |
font-size: 1rem; |
| 97 |
} |
| 98 |
|
| 99 |
.sequra-modal__title { |
| 100 |
font-weight: 700; |
| 101 |
margin-bottom: 1rem; |
| 102 |
} |
| 103 |
|
| 104 |
.sequra-modal__subtitle { |
| 105 |
margin-bottom: 2rem; |
| 106 |
color: #3c434a; |
| 107 |
} |
| 108 |
|
| 109 |
.sequra-modal__actions { |
| 110 |
display: flex; |
| 111 |
justify-content: right; |
| 112 |
gap: 1rem; |
| 113 |
} |