| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394 |
- #changeIntro {
- position: relative;
- padding: 25px 32px 32px 32px;
- min-height: 100%;
- h1 {
- font-size: 22px;
- margin-bottom: 20px;
- }
- table {
- border: 1px solid #ccc;
- caption {
- text-align: left;
- font-size: 16px;
- margin-bottom: 10px;
- }
- tbody {
- tr {
- th, td {
- text-align: left;
- font-size: 14px;
- font-weight: normal;
- padding: 12px 13px;
- }
- th {
- background: #f9f9f9;
- border: 1px solid #ccc;
- }
- td {
- border-bottom: 1px solid #ccc;
- }
- }
- }
- tfoot {
- background: #fbfbfb;
- tr {
- td {
- text-align: center;
- padding: 8px;
- button, a {
- padding: 6px 20px;
- }
- .btn-delete {
- background-color: #e6f4fa;
- color: #333;
- border: 1px solid #b3b3b3;
- -webkit-box-shadow: inset 0 -1px 0 0 #b3b3b3;
- box-shadow: inset 0 -1px 0 0 #b3b3b3;
- &:hover {
- background-color: #c6e7f3;
- }
- }
- }
- }
- }
- }
- dl {
- background-color: #f1f1f1;
- border: 1px solid #ccc;
- line-height: 1.5;
- padding: 15px 16px 12px 16px;
- dt, dd {
- font-size: 14px;
- }
- dt {
- font-weight: bold;
- margin-bottom: 7px;
- }
- dd {
- ol {
- list-style: disc;
- padding: 0 20px;
- }
- }
- }
- blockquote {
- line-height: 1.9;
- }
- }
|