~fusonic/chive/1.1

« back to all changes in this revision

Viewing changes to yii/cli/views/webapp/css/main.css

  • Committer: Matthias Burtscher
  • Date: 2010-02-12 09:12:35 UTC
  • Revision ID: matthias.burtscher@fusonic.net-20100212091235-jqxrb62klx872ajc
* Updated Yii to 1.1.0
* Removed CodePress and CodeMirror
* Updated jQuery and some plugins
* Cleaned some code ...

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/* begin overall style */
2
1
body
3
2
{
4
3
        margin: 0;
5
4
        padding: 0;
6
 
        background: white;
7
 
        color: #444;
 
5
        color: #555;
8
6
        font: normal 10pt Arial,Helvetica,sans-serif;
9
 
        background:white url(bg.gif) repeat-x left top;
 
7
        background: #EFEFEF;
10
8
}
11
9
 
12
10
#page
13
11
{
14
 
        width: 750px;
15
 
        margin: 0 auto;
16
 
        padding: 0;
 
12
        margin-top: 5px;
 
13
        margin-bottom: 5px;
 
14
        background: white;
 
15
        border: 1px solid #C9E0ED;
17
16
}
18
17
 
19
18
#header
20
19
{
21
20
        margin: 0;
22
21
        padding: 0;
23
 
        height: 95px;
 
22
        border-top: 3px solid #C9E0ED;
 
23
}
 
24
 
 
25
#content
 
26
{
 
27
    padding: 20px;
 
28
}
 
29
 
 
30
#footer
 
31
{
 
32
        padding: 10px;
 
33
        margin: 10px 20px;
 
34
        font-size: 0.8em;
 
35
        text-align: center;
 
36
        border-top: 1px solid #C9E0ED;
24
37
}
25
38
 
26
39
#logo
27
40
{
28
 
        padding: 20px 0 20px 10px;
 
41
        padding: 10px 20px;
29
42
        font-size: 200%;
30
43
}
31
44
 
32
45
#mainmenu
33
46
{
34
 
        position: absolute;
35
 
        top: 59px;
 
47
        background:white url(bg.gif) repeat-x left top;
36
48
}
37
49
 
38
50
#mainmenu ul
39
51
{
40
 
        padding: 0;
41
 
        margin: 0;
42
 
        padding: 0.4em 0 0.3em 0;
 
52
        padding:6px 20px 5px 20px;
 
53
        margin:0px;
43
54
}
44
55
 
45
56
#mainmenu ul li
49
60
 
50
61
#mainmenu ul li a
51
62
{
52
 
        padding: 0.4em 0.4em;
53
 
        color: white;
54
 
        text-decoration: none;
55
 
        font-weight: bold;
 
63
        color:#ffffff;
 
64
        background-color:transparent;
 
65
        font-size:12px;
 
66
        font-weight:bold;
 
67
        text-decoration:none;
 
68
        padding:5px 8px;
56
69
}
57
70
 
58
71
#mainmenu ul li a:hover, #mainmenu ul li a.active
59
72
{
60
 
        background: #E6F2FF;
61
73
        color: #6399cd;
62
 
}
63
 
 
64
 
#content
65
 
{
66
 
    position: relative;
67
 
    width: 95%;
68
 
    margin: 0 auto;
69
 
    padding: 0px;
70
 
}
71
 
 
72
 
#footer
73
 
{
74
 
        padding: 15px;
75
 
        margin: 20px 0 0 0;
 
74
        background-color:#EFF4FA;
 
75
        text-decoration:none;
 
76
}
 
77
 
 
78
div.error, div.notice, .success
 
79
{
 
80
        padding:.8em;
 
81
        margin-bottom:1em;
 
82
        border:2px solid #ddd;
 
83
}
 
84
 
 
85
div.error
 
86
{
 
87
        background:#FBE3E4;
 
88
        color:#8a1f11;
 
89
        border-color:#FBC2C4;
 
90
}
 
91
 
 
92
div.notice
 
93
{
 
94
        background:#FFF6BF;
 
95
        color:#514721;
 
96
        border-color:#FFD324;
 
97
}
 
98
 
 
99
div.success
 
100
{
 
101
        background:#E6EFC2;
 
102
        color:#264409;
 
103
        border-color:#C6D880;
 
104
}
 
105
 
 
106
div.error a
 
107
{
 
108
        color:#8a1f11;
 
109
}
 
110
 
 
111
div.notice a
 
112
{
 
113
        color:#514721;
 
114
}
 
115
 
 
116
div.success a
 
117
{
 
118
        color:#264409;
 
119
}
 
120
 
 
121
div.form .rememberMe label
 
122
{
 
123
        display: inline;
 
124
}
 
125
 
 
126
.actions
 
127
{
 
128
        margin: 0 0 10px 0;
 
129
        padding: 0;
 
130
}
 
131
 
 
132
.actions li
 
133
{
 
134
        display: inline;
 
135
        margin: 0;
 
136
        padding: 0;
 
137
}
 
138
 
 
139
.actions li a
 
140
{
 
141
        padding: 5px;
 
142
        margin: 0;
 
143
        color: #298dcd;
 
144
        text-decoration: none;
76
145
        font-size: 0.8em;
77
 
        text-align: center;
78
 
        border-top: 1px solid #EEE;
79
 
}
80
 
/* end of overall style */
81
 
 
82
 
/* begin data grid style */
83
 
table.dataGrid
84
 
{
85
 
        background: white;
86
 
        border-collapse: collapse;
87
 
        width: 100%;
88
 
}
89
 
 
90
 
table.dataGrid th, table.dataGrid td
 
146
        font-weight: bold;
 
147
        background: #DFF4FF;
 
148
        border-left: 5px solid #589FC8;
 
149
}
 
150
 
 
151
.actions li a:hover, .actions li a.active
 
152
{
 
153
        background: #589FC8;
 
154
        color: white;
 
155
}
 
156
 
 
157
div.view
 
158
{
 
159
        padding: 10px;
 
160
        margin: 10px 0;
 
161
        border: 1px solid #C9E0ED;
 
162
}
 
163
 
 
164
div.breadcrumbs
91
165
{
92
166
        font-size: 0.9em;
93
 
        border: 1px #4F81BD solid;
94
 
        padding: 0.3em;
95
 
}
96
 
 
97
 
table.dataGrid th
98
 
{
99
 
        background: #d3dfee;
100
 
        text-align: center;
101
 
}
102
 
 
103
 
table.dataGrid th.label
104
 
{
105
 
        width: 150px;
106
 
}
107
 
 
108
 
table.dataGrid tr.odd
109
 
{
110
 
        background: #E6F2FF;
111
 
}
112
 
/* end of data grid style */
113
 
 
114
 
.actionBar
115
 
{
116
 
        margin: 10px;
117
 
}
118
 
 
119
 
div.item
120
 
{
121
 
        margin: 10px 0 0 0;
122
 
        border: 1px solid silver;
123
 
        padding: 5px;
 
167
        padding: 5px 20px;
 
168
}
 
169
 
 
170
div.breadcrumbs span
 
171
{
 
172
        font-weight: bold;
124
173
}
 
 
b'\\ No newline at end of file'