-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathstyle.css
166 lines (145 loc) · 3.17 KB
/
style.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
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
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
.titleblock {
position: absolute;
top: 0px;
left: 0px;
width: 100%;
height: 100px;
background-color: #e8ebeb;
}
.titleblock > .image {
position: absolute;
left: 15px;
top: 15px;
height: 100px;
}
.titleblock > .text {
position: absolute;
top: 40px;
left: 43%;
font:normal 30px "Nimbus Sans Cond", tahoma, helvetica, arial, sans-serif;
}
ul {
position: absolute;
top: 100px;
left: 0px;
list-style-type: none;
margin: 0;
padding: 0;
width: 150px;
height: 100%;
background-color: #e8ebeb;
font:normal 18px "Nimbus Sans Cond", tahoma, helvetica, arial, sans-serif;
padding: 16px 8px;
}
li a {
display: block;
color: #000;
padding: 4px 16px;
text-decoration: none;
font:normal 14px "Nimbus Sans Cond", tahoma, helvetica, arial, sans-serif;
}
li a:hover {
background-color: #306a89;
color: white;
}
.form1 {
position: absolute;
top: 125px;
left: 175px;
border-radius: 5px;
background-color: #e8ebeb;
padding: 5px;
width: 80%;
}
.form1 label {
font:normal 16px "Nimbus Sans Cond", tahoma, helvetica, arial, sans-serif;
}
.form1 input[type=text] {
width: 100%;
padding: 12px 20px;
margin: 8px 0;
box-sizing: border-box;
font:normal 14px "Nimbus Sans Cond", tahoma, helvetica, arial, sans-serif;
}
.form1 select {
width: 100%;
padding: 12px 20px;
margin: 8px 0;
box-sizing: border-box;
font:normal 14px "Nimbus Sans Cond", tahoma, helvetica, arial, sans-serif;
}
.form1 input[type=password] {
width: 100%;
padding: 12px 20px;
margin: 8px 0;
box-sizing: border-box;
font:normal 14px "Nimbus Sans Cond", tahoma, helvetica, arial, sans-serif;
}
.form1 input[type=submit] {
font:normal 14px "Nimbus Sans Cond", tahoma, helvetica, arial, sans-serif;
background-color: #306a89;
border: none;
color: white;
width: 100%;
padding: 15px;
text-decoration: none;
cursor: pointer;
}
.form2 {
position: absolute;
width: 80%;
top: 465px;
left: 175px;
border-radius: 5px;
background-color: #e8ebeb;
padding: 5px;
}
.form2 table {
table-layout: auto;
width: 100%;
border-collapse: collapse;
border: 5px solid #e8ebeb;
border-radius: 5px;
background-color: white;
}
.form2 th {
padding: 15px;
background-color: #306a89;
color: white;
border: 5px solid #e8ebeb;
border-radius: 5px;
font:normal 16px "Nimbus Sans Cond", tahoma, helvetica, arial, sans-serif;
}
.form2 tr {
width: 100%;
}
.form2 td {
padding: 5px;
border: 5px solid #e8ebeb;
border-radius: 5px;
font:normal 14px "Nimbus Sans Cond", tahoma, helvetica, arial, sans-serif;
}
.form2 .datacolumn {
width: 31%;
align: left;
}
.form2 .radiocolumn {
width: 7%;
align: center;
}
.form2 input[type=submit] {
font:normal 14px "Nimbus Sans Cond", tahoma, helvetica, arial, sans-serif;
background-color: #306a89;
border: none;
color: white;
width: 100%;
padding: 15px;
text-decoration: none;
cursor: pointer;
}
.response {
position: absolute;
top: 125px;
left: 175px;
font:normal 14px "Nimbus Sans Cond", tahoma, helvetica, arial, sans-serif;
}