-
Notifications
You must be signed in to change notification settings - Fork 1
/
test.css
87 lines (71 loc) · 965 Bytes
/
test.css
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
*{
padding:0px;
margin:0px;
}
body
{
/*text-align:center;*/
font-size:120%;
background:#F8F8FF;
}
.header
{
background-color:#5F9E40;
color:white;
text-align:center;
top:0px;
width:30%;
padding:20px;
margin:50px auto 0px;
border:1px solid #B0C4DE;
border-radius: 10px 10px 10px 10px;
}
form
{
width:30%;
padding:20px;
border:1px solid #B0C4DE;
margin:0px auto;
border-radius:0px 0px 10px 10px;
background:white;
}
.textInput
{
margin-top:2px;
height:28px;
border:1px solid blue;
font-size:16px;
padding:1px;
width:100%;
}
#error_msg
{
width:50%;
margin:5px auto;
height:30px;
background:#FFB9BB;
color:#FF0000;
text-align:center;
padding-top:10px;
}
td
{
text-align:right;
}
h2
{
color:darkblue;
}
h3
{
color:red;
}
.btn
{
padding:10px;
font-size:15px;
color:white;
border:none;
border-radius: 5px;
background:#5F9EA0;
}