source: trunk/src/anaToMia/GDL_Widgets/war/GDL_Widgets.css

Last change on this file was 953, checked in by lgiessmann, 13 years ago

gdl-frontend: Widgets: fixed a bug in the project's css file

File size: 1.3 KB
Line 
1/** Add css rules here for your application. */
2
3
4/** Example rules used by the template application (remove for your app) */
5h1 {
6  font-size: 2em;
7  font-weight: bold;
8  color: #777777;
9  margin: 40px 0px 70px;
10  text-align: center;
11}
12
13
14.sendButton {
15  display: block;
16  font-size: 16pt;
17}
18
19/** Most GWT widgets already have a style name defined */
20.gwt-DialogBox {
21  width: 400px;
22}
23
24.dialogVPanel {
25  margin: 5px;
26}
27
28.serverResponseLabelError {
29  color: red;
30}
31
32/** Set ids using widget.getElement().setId("idOfElement") */
33#closeButton {
34  margin: 15px 6px 6px;
35}
36
37.psi_label {
38  cursor: pointer;     
39}
40
41
42.psi_label:hover {
43  font-size: larger;
44  border: rgb(134, 169, 203) 1px solid;
45  border-radius: 5px;
46  padding-left: 2px;
47  padding-right: 2px;
48  margin-top: 5px;
49  margin-bottom: 5px;
50}
51
52
53.psi_label:active {
54  font-size: larger;
55  border: rgb(134, 169, 203) 1px solid;
56  border-radius: 5px;
57  padding-left: 2px;
58  padding-right: 2px;
59  margin-top: 5px;
60  margin-bottom: 5px;
61  background-color: rgb(134, 169, 203);
62}
63
64
65.hash_object_psi_container {
66  border: rgb(134, 169, 203) 1px solid;
67  border-radius: 5px;
68  padding: 0.5em;
69}
70
71
72.content_panel > tbody > tr > td {
73  width: 50%;   
74}
75
76
77.gdl_panel {
78  margin-left:auto;
79  margin-right:0;
80  margin-top: 2em;     
81}
82
83.create_new_button {
84  margin-bottom: 2em;
85}
86
87
88.bad_input {
89  color: red;   
90}
Note: See TracBrowser for help on using the repository browser.