~joaopinto/apt-portal/pre-modules

« back to all changes in this revision

Viewing changes to applications/om-showroom/static/css/app_edit.css

  • Committer: Joao Pinto
  • Date: 2009-06-13 22:45:41 UTC
  • Revision ID: joao.pinto@getdeb.net-20090613224541-g1fpmbb9e9jg5u10
Initial commit for the cherrypy version

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/* Stylesheet for playdeb.net written by Tyler Mulligan of www.detrition.net */
2
 
 
3
 
/* Comment Form */
4
 
#applicationForm { 
5
 
        width: 870px;
6
 
        margin-left: auto;
7
 
        margin-right: auto;
8
 
}
9
 
#applicationForm fieldset {
10
 
        border:2px solid #111;
11
 
        border-style: groove;
12
 
        padding:4px;
13
 
}
14
 
legend { margin-left:10px; }
15
 
#applicationForm label, #applicationForm em, #applicationForm input, #applicationForm p { float:left; }
16
 
#applicationForm input, #applicationForm textarea {
17
 
        background-color:#000;
18
 
        color:#777;
19
 
        border:2px solid #444;
20
 
        padding:4px;
21
 
        font-size:15px;
22
 
        clear:left;
23
 
}
24
 
#applicationForm input:hover, #applicationForm textarea:hover {
25
 
        background-color:#111;
26
 
        color:#555;
27
 
        border:2px solid #555;
28
 
}
29
 
#applicationForm input:focus, #applicationForm textarea:focus {
30
 
        background-color:#000;
31
 
        color:#555;
32
 
        border:2px solid #777;
33
 
}
34
 
#applicationForm label { margin-bottom: 2px; }
35
 
#applicationForm input { width:254px; }
36
 
#applicationForm em, #applicationForm .note span { color:#D18F2C; }
37
 
#applicationForm label.error { 
38
 
        clear:left;
39
 
        color:#A77103;
40
 
        background:url('img/xicon_error.png') no-repeat 0 0;
41
 
        margin-top:5px;
42
 
        padding:1px 0 2px 24px;
43
 
        font-size:13px;
44
 
        height:22px;
45
 
        font-weight:normal;
46
 
}
47
 
#applicationForm .note {
48
 
        text-align:right;
49
 
        font-size:14px;
50
 
        color:#666;
51
 
        margin:0;
52
 
        padding:3px 0 0 0;
53
 
        width:848px;
54
 
}
55
 
 
56
 
textarea {
57
 
        width:540px;
58
 
        height:150px;
59
 
        float:left !important;
60
 
}
61
 
#applicationForm input.submit {
62
 
        float:right !important;
63
 
        background:#222 !important;
64
 
}
65
 
#applicationForm p.clear { clear:left; }
66
 
 
67
 
.error_msg {
68
 
        font-size:14px;
69
 
        color: red;
70
 
}
71
 
 
72
 
#sreenshot_thumb {
73
 
        //position:relative;
74
 
        //top: 35px;
75
 
        //left: 330px;
76
 
        //margin-left:130px;
77
 
}
78
 
 
79
 
/* upload button */
80
 
#upload_button {        
81
 
        position:relative;
82
 
        top: -150px;
83
 
        left: 660px;
84
 
        height: 20px;   
85
 
        width: 160px;
86
 
        font-size: 14px;
87
 
        color: #C7D92C;
88
 
        padding-top: 5px;
89
 
        border-style:solid;
90
 
        border-width:2px;
91
 
}
92
 
 
93
 
/* 
94
 
We can't use ":hover" preudo-class because we have
95
 
invisible file input above, so we have to simulate
96
 
hover effect with javascript. 
97
 
 */
98
 
#upload_button.hover {
99
 
        color: #95A226; 
100
 
}
101