Adrià | 6ae49e7 | 2014-11-09 22:21:19 +0100 | [diff] [blame] | 1 | @import url("widgets.css"); |
| 2 | |
| 3 | body { |
| 4 | padding: 10px; |
| 5 | font-family: "Roboto", "Arial", sans-serif!important; |
| 6 | background-color: #BBDEFB; |
| 7 | background-repeat: repeat; |
| 8 | background-position: left top; |
| 9 | font-size: 100%; |
| 10 | cursor: default; |
| 11 | } |
| 12 | h1 { |
| 13 | text-align: center; |
| 14 | font-size: 30px; |
| 15 | } |
| 16 | h2 { |
| 17 | font-size: 20px; |
| 18 | } |
| 19 | #languages_container { |
| 20 | width: 300px; |
| 21 | height: 365px; |
| 22 | border: 1px solid #ccc; |
| 23 | background-color: #E3F2FD; |
| 24 | } |
| 25 | #languages { |
| 26 | list-style: none; |
| 27 | margin: 0; |
| 28 | padding: 0; |
| 29 | } |
| 30 | #languages li { |
| 31 | padding: 15px; |
| 32 | border-bottom: 1px dashed #ddd; |
| 33 | background-color: #EEF7FD; |
| 34 | cursor: move; |
| 35 | -webkit-user-select: none; |
| 36 | } |
| 37 | #languages li.sortable-ghost { |
| 38 | background-color: #E3F2FD; |
| 39 | } |
| 40 | #languages li .delete { |
| 41 | font-size: 14px; |
| 42 | float: right; |
| 43 | cursor: pointer; |
| 44 | color: red; |
| 45 | } |
| 46 | #languages_footer { |
| 47 | width: 300px; |
| 48 | height: 35px; |
| 49 | background-color: #fff; |
| 50 | border: 1px solid #ccc; |
| 51 | border-top: 0; |
| 52 | } |
| 53 | button, input, select, option { |
| 54 | font-size: 13px!important; |
| 55 | } |
| 56 | #languages_add { |
| 57 | margin-left: 4px; |
| 58 | margin-top: 4px; |
| 59 | } |
| 60 | #save { |
| 61 | display: block; |
| 62 | margin: 18px auto; |
| 63 | } |
| 64 | |
| 65 | /* Dialog */ |
Adrià | e96a76c | 2014-12-06 14:59:17 +0100 | [diff] [blame] | 66 | dialog#languages_add_dialog { |
Adrià | 6ae49e7 | 2014-11-09 22:21:19 +0100 | [diff] [blame] | 67 | position: fixed; |
| 68 | top: 50%; |
| 69 | left: 50%; |
| 70 | margin-left: -216px; |
| 71 | margin-top: -91px; |
| 72 | height: 150px; |
| 73 | width: 400px; |
| 74 | border: 1px solid rgba(0, 0, 0, 0.3); |
| 75 | border-radius: 6px; |
| 76 | box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3); |
| 77 | } |
| 78 | |
| 79 | dialog h3 { |
| 80 | margin-bottom: 10px; |
| 81 | } |
| 82 | |
| 83 | dialog #language_label { |
| 84 | font-size: 12px; |
| 85 | } |
| 86 | |
| 87 | dialog select { |
| 88 | width: 100%; |
| 89 | } |
| 90 | |
| 91 | dialog .action_buttons { |
| 92 | margin-top: 10px; |
| 93 | float: right; |
| 94 | } |
| 95 | |
| 96 | dialog::backdrop { |
| 97 | position: fixed; |
| 98 | top: 0; |
| 99 | left: 0; |
| 100 | right: 0; |
| 101 | bottom: 0; |
| 102 | background-color: rgba(0, 0, 0, 0.5); |
Adrià | e96a76c | 2014-12-06 14:59:17 +0100 | [diff] [blame] | 103 | } |
| 104 | |
| 105 | /* Credits */ |
| 106 | #credits_container { |
| 107 | position: absolute; |
| 108 | top: 0px; |
| 109 | right: 50px; |
| 110 | background: rgb(195, 235, 204); |
| 111 | border: solid 1px rgb(139, 139, 139); |
| 112 | border-top: 0; |
| 113 | border-radius: 0px 0px 5px 5px; |
| 114 | } |
| 115 | |
| 116 | #credits_container a { |
| 117 | color: green!important; |
| 118 | margin: 0 5px; |
| 119 | } |
| 120 | |
| 121 | dialog#credits_dialog { |
| 122 | position: fixed; |
| 123 | top: 50%; |
| 124 | left: 50%; |
| 125 | margin-left: -216px; |
| 126 | margin-top: -196px; |
| 127 | height: 360px; |
| 128 | width: 400px; |
| 129 | border: 1px solid rgba(0, 0, 0, 0.3); |
| 130 | border-radius: 6px; |
| 131 | box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3); |
| 132 | } |
| 133 | |
| 134 | dialog#credits_dialog .content_area h4 { |
| 135 | margin-bottom: 0px; |
| 136 | } |
| 137 | |
| 138 | dialog#credits_dialog .content_area a.homepage { |
| 139 | position: absolute; |
| 140 | right: 16px; |
| 141 | font-size: 14px; |
| 142 | } |
| 143 | |
| 144 | dialog#credits_dialog .content_area p, dialog#credits_dialog .content_area span { |
| 145 | font-size: 14px; |
| 146 | } |
| 147 | |
| 148 | dialog#credits_dialog .content_area p.author { |
| 149 | margin-top: 7px; |
Adrià | 6ae49e7 | 2014-11-09 22:21:19 +0100 | [diff] [blame] | 150 | } |