aboutsummaryrefslogtreecommitdiff
path: root/snakeplan/templates/media/css/screen.css
blob: fe141c58fa17075d4bb96d033c7258cd194109e2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
/*********************************************************************
 * Base                                                              *
 *********************************************************************/
body {
    font: 12px Verdana, Arial, sans-serif;
    margin: 0;
}
         
h1, h2, h3, h4, h5 {
    font-family: Georgia, Times, 'Times New Roman', serif;
    font-weight: normal;
    text-align: center;
}

a {
    color: #00F;
}

form, table, .action-bar {
    width: 75%;
    margin: auto;
}

table {
    margin: auto;
    border: 1px solid #CCC;
    border-collapse: collapse;
}

td, th {
    padding: 5px;
    border: 1px solid #AAA;
}

th {
    background: #AAA;
    text-align: center;
    border-bottom: 1px solid black;
}

.copyright {
    text-align: center;
    font-size: 0.8em;
    color: #999;
}

.row-actions {
    text-align: center;
}

.action-bar {
    margin: 10px auto;
    padding: 0px;
    list-style: none;
    height: 20px;
}

.action-bar li {
    display: block;
    float: right;
    padding: 0 10px;
}

a.action {
    text-decoration: none;
    color: #000;
}

a.action img {
    vertical-align: middle;
}


/*********************************************************************
 * Messages                                                          *
 *********************************************************************/
div.warning {
    border-color: #FC3;
    background: #FF9 url('../images/warning.png');
}

div.error {
    background: #FCC url('../images/error.png');
    border-color: #903;
}

div.info {
    background: #CCF url('../images/info.png');
    border-color: #00C;
}

div.user-notice {
    border-width: 1px;
    border-style: solid;
    padding: 20px 20px 20px 50px;
    width: 50%;
    margin: auto;
    background-repeat: no-repeat;
    background-position: 20px;
}


/*********************************************************************
 * Forms                                                             *
 *********************************************************************/
fieldset ol {
    padding: 0;
    list-style: none;
}

fieldset ol li {
    float: left;
    clear: left;
    width: 100%;
    padding-bottom: 1em;
}

fieldset label {
    float: left;
    width: 10em;
    margin-right: 1em;
    text-align: right;
}

fieldset {
    border: 0;
}

fieldset.submit {
    padding-left: 10em;
}

fieldset legend {
    display: none;
}


/*********************************************************************
 * Projects                                                          *
 *********************************************************************/
.project.inactive, .project.inactive a {
    color: #999;
}