Home directory for Malawi's wwwroot
Duncan Ewan
2021-02-19 3e758c29e0fde36fc088efcfc88f9a3014432b64
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
/*
 * Copyright (c) 1995-2005 Macromedia, Inc. All rights reserved. 
*/
.cfform{
    width: 98%;
    height: auto;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 10px;
}
.cfform hr{    
    width: 99%;
    height: 1px;
}
.cfform p{
    margin-top: 0px;
    padding: 0px;
}
 
/**********************
 Form Elements 
***********************/
.cfElementRow{
}
 
.cfInput, .cfTextarea {
    font-size: 10px;
    font-family: inherit;
}
.cfSelect {
    font-size: 10px;
    font-family: inherit;
}
 
.cfTextarea{
        
}
 
.cfRadio{
    font-size: 10px;
}
 
.cfCheckbox{
    font-size: 10px;
}
 
.cfButton{
    
}
 
.cfButtonBar{
 
}
 
.cfText{
    font-size: 12px;
    font-family: inherit;
    padding:10px !important;
}
 
 
.cfRequiredElement{
 
}
 
 
/**************************
 labels 
 **************************/
/* label of form element */
label{
    font-family: Arial, Helvetica, sans-serif;
    font-size: 12px;
    padding-right:2px;
}
 
/* first child in a horizontal group, sets width so all elements down form line up */
.cfFirstChild  {
    width: 130px !important; 
}
 
/* the label of an individual form element */
.cfLabelTitle{
    font-family: Arial, Helvetica, sans-serif;
    font-size: 12px;
    margin-top: 8px;
    width: 100px;
}
 
/* applyes to vertical form group labels */
.cfHeaderTitle{
    width: 100%;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 16px;
}
 
/* applys to label of elements that are required */
.cfRequiredLabel{
 
}
 
.cfRequiredLabelIndicator {
    color: #ff0000;
    font-size:1.2em;
}
 
/***************************
    alignment 
****************************/
/* horizontal form groups */
.horizontal{    
 
}
 
/* vertical form groups */
.vertical table{    
 
}
 
/* left aligned labels */
.cfLabelPosLeft  {
    margin-left: 10px !important;
    text-align:left;
}
 
/* right aligned labels */
.cfLabelPosRight {
    margin-right: 10px;
    text-align: right;
}
 
/* top aligned labels */
.cfLabelPosTop  {
    margin-right: 1ex;
}
 
/* centered aligned labels */
.cfLabelPosCenter  {
    margin-right: 1ex;
    text-align: center;
}