| 1 |
.codoc-settings { |
| 2 |
padding-right: 20px; |
| 3 |
} |
| 4 |
|
| 5 |
.codoc-settings .form-table { |
| 6 |
|
| 7 |
} |
| 8 |
|
| 9 |
.codoc-settings .form-table th { |
| 10 |
padding: 20px 15px; |
| 11 |
background: linear-gradient(to right, #FCF5D5 0%, #FEF5FF 50%, #EDFFFC); |
| 12 |
color: #1B1D1F; |
| 13 |
border-bottom: solid 1px #c9c9c9; |
| 14 |
text-align: right; |
| 15 |
vertical-align: middle; |
| 16 |
} |
| 17 |
|
| 18 |
.codoc-settings .form-table tr:first-of-type th { |
| 19 |
border-top-left-radius: 10px; |
| 20 |
} |
| 21 |
|
| 22 |
.codoc-settings .form-table tr:last-of-type th { |
| 23 |
border-bottom-left-radius: 10px; |
| 24 |
} |
| 25 |
|
| 26 |
.codoc-settings .form-table td { |
| 27 |
padding: 20px 15px; |
| 28 |
border-bottom: solid 1px #c9c9c9; |
| 29 |
background: #fff; |
| 30 |
} |
| 31 |
|
| 32 |
.codoc-settings .form-table tr:first-of-type td { |
| 33 |
border-top-right-radius: 10px; |
| 34 |
} |
| 35 |
|
| 36 |
.codoc-settings .form-table td .excerpt { |
| 37 |
margin-bottom: 1em; |
| 38 |
} |
| 39 |
|
| 40 |
.codoc-settings .form-table td .inputGroup { |
| 41 |
display: flex; |
| 42 |
} |
| 43 |
|
| 44 |
.codoc-settings .form-table td input[type="text"] { |
| 45 |
margin-right: 0.5em; |
| 46 |
} |
| 47 |
|
| 48 |
.codoc-settings .form-table td .suptext { |
| 49 |
display: inline-block; |
| 50 |
margin-right: 0.5em; |
| 51 |
} |
| 52 |
|
| 53 |
.codoc-settings .form-table td .inputRow { |
| 54 |
margin-bottom: 1em; |
| 55 |
} |
| 56 |
|
| 57 |
.codoc-settings .form-table td .inputRow:last-of-type { |
| 58 |
margin-bottom: 0; |
| 59 |
} |
| 60 |
|
| 61 |
.codoc-settings .form-table td .inputRow textarea { |
| 62 |
width: 70%; |
| 63 |
height: 100px; |
| 64 |
margin-right: 0.5em; |
| 65 |
} |
| 66 |
|
| 67 |
.codoc-settings .innerTable { |
| 68 |
border-collapse: collapse; |
| 69 |
border-spacing: 0; |
| 70 |
width: 100%; |
| 71 |
border-top: solid 1px #c9c9c9; |
| 72 |
border-left: solid 1px #c9c9c9; |
| 73 |
} |
| 74 |
|
| 75 |
.codoc-settings .innerTable th { |
| 76 |
width: 120px; |
| 77 |
background: #f1f1f1; |
| 78 |
color: #444; |
| 79 |
border-right: solid 1px #c9c9c9; |
| 80 |
border-bottom: solid 1px #c9c9c9; |
| 81 |
} |
| 82 |
|
| 83 |
.codoc-settings .innerTable td { |
| 84 |
border-right: solid 1px #c9c9c9; |
| 85 |
border-bottom: solid 1px #c9c9c9; |
| 86 |
} |
| 87 |
|
| 88 |
|
| 89 |
|
| 90 |
@media screen and (max-width: 782px) { |
| 91 |
|
| 92 |
.codoc-settings .form-table th { |
| 93 |
padding: 15px; |
| 94 |
text-align: left; |
| 95 |
} |
| 96 |
|
| 97 |
.codoc-settings .form-table tr:first-of-type th { |
| 98 |
border-top-left-radius: 0px; |
| 99 |
} |
| 100 |
|
| 101 |
.codoc-settings .form-table tr:last-of-type th { |
| 102 |
border-bottom-left-radius: 0; |
| 103 |
} |
| 104 |
|
| 105 |
.codoc-settings .form-table td .inputGroup { |
| 106 |
flex-direction: column; |
| 107 |
} |
| 108 |
|
| 109 |
.codoc-settings .form-table td input[type="text"] { |
| 110 |
margin: 0 0 0.5em 0; |
| 111 |
} |
| 112 |
|
| 113 |
.codoc-settings .form-table td input[type="text"]:last-of-type-of-type { |
| 114 |
margin: 0; |
| 115 |
} |
| 116 |
|
| 117 |
.codoc-settings .form-table td .suptext { |
| 118 |
display: block; |
| 119 |
margin: 0 0 0.5em 0; |
| 120 |
} |
| 121 |
|
| 122 |
.codoc-settings .form-table td .inputRow textarea { |
| 123 |
width: 100%; |
| 124 |
height: 100px; |
| 125 |
margin: 0 0 0.5em 0; |
| 126 |
} |
| 127 |
|
| 128 |
.codoc-settings .innerTable th { |
| 129 |
width: 100%; |
| 130 |
box-sizing: border-box; |
| 131 |
} |
| 132 |
|
| 133 |
} |
| 134 |
|