| 1 |
.dci-notice { |
| 2 |
position: absolute; |
| 3 |
height: 100%; |
| 4 |
width: 100%; |
| 5 |
display: flex; |
| 6 |
justify-content: center; |
| 7 |
padding: 0px; |
| 8 |
top: 0; |
| 9 |
left: 0; |
| 10 |
background: rgba(0, 0, 0, 0.5); |
| 11 |
z-index: 2; |
| 12 |
} |
| 13 |
|
| 14 |
.dci-notice-wrapper { |
| 15 |
position: relative; |
| 16 |
background: #fff; |
| 17 |
width: 100%; |
| 18 |
max-width: 400px; |
| 19 |
margin: auto; |
| 20 |
padding: 32px; |
| 21 |
border: 1.5px solid #ddd; |
| 22 |
border-radius: 5px; |
| 23 |
} |
| 24 |
|
| 25 |
.dci-header { |
| 26 |
text-align: justify; |
| 27 |
margin-bottom: 38px; |
| 28 |
} |
| 29 |
|
| 30 |
.dci-title { |
| 31 |
text-align: center; |
| 32 |
} |
| 33 |
|
| 34 |
.dci-actions { |
| 35 |
border: 1px solid #ddd; |
| 36 |
padding: 16px 10px; |
| 37 |
border-left: unset; |
| 38 |
border-right: unset; |
| 39 |
} |
| 40 |
|
| 41 |
.dci-actions form { |
| 42 |
display: flex; |
| 43 |
justify-content: space-between; |
| 44 |
margin: 0px; |
| 45 |
padding: 0px; |
| 46 |
} |
| 47 |
|
| 48 |
.dci-actions button { |
| 49 |
padding: 6px 16px !important; |
| 50 |
} |
| 51 |
|
| 52 |
.dci-permission { |
| 53 |
padding: 32px; |
| 54 |
text-align: center; |
| 55 |
} |
| 56 |
|
| 57 |
.dci-permission p { |
| 58 |
margin: 0px; |
| 59 |
font-weight: bold; |
| 60 |
font-size: 13px; |
| 61 |
color: #2271b1; |
| 62 |
} |
| 63 |
|
| 64 |
.dci-permission-item { |
| 65 |
display: flex; |
| 66 |
align-items: center; |
| 67 |
column-gap: 16px; |
| 68 |
} |
| 69 |
|
| 70 |
.dci-data-list ul { |
| 71 |
list-style: none; |
| 72 |
padding: 0px; |
| 73 |
margin: 0px; |
| 74 |
} |
| 75 |
|
| 76 |
.dci-data-list li { |
| 77 |
margin-bottom: 22px; |
| 78 |
} |
| 79 |
|
| 80 |
.dci-data-list li:last-child { |
| 81 |
margin-bottom: 0px; |
| 82 |
} |
| 83 |
|
| 84 |
.dci-data-list .dci-desc h3 { |
| 85 |
margin: 0px; |
| 86 |
margin-bottom: 5px; |
| 87 |
font-size: 1.2em; |
| 88 |
} |
| 89 |
|
| 90 |
.dci-data-list .dci-desc p { |
| 91 |
margin: 0px; |
| 92 |
font-size: 1em; |
| 93 |
} |
| 94 |
|
| 95 |
.dci-data-list .dashicons { |
| 96 |
font-size: 32px; |
| 97 |
height: 32px; |
| 98 |
width: 32px; |
| 99 |
} |
| 100 |
|