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