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