-
Notifications
You must be signed in to change notification settings - Fork 0
/
Employee_Payroll_Service.css
231 lines (197 loc) · 4.13 KB
/
Employee_Payroll_Service.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
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
/* UC 1 ::: Employee Payroll App with logo*/
body{
margin: 0;
height: 100%;
}
.header{
padding: 15px 0;
background-color: #ffffff;
}
.header-content{
display: flex;
flex-direction: row;
justify-content: center;
align-items: center;
border: 0px solid green;
}
.logo-content{
display: flex;
flex-direction: row;
align-items: center;
border: 0px solid green;
width: 80%;
}
.logo-content-img{
border: solid 0px #dae2e9;
}
.emp-text{
font: normal normal bold 20px/25px Montserrat;
font-family: "Montserrat", sans-serif;
letter-spacing: 0px;
color: #82a70c;
text-transform: capitalize;
}
.emp-payroll{
color: #0e85f4;
}
*{
box-sizing: border-box;
}
/* UC 2 ::: Employee Payroll App with With Header And Name */
.form-content {
min-height: calc(100% - 80px);
background-color: #f7f7f7;
display: flex;
justify-content: center;
align-items: center;
border: 0px solid green;
}
.form {
width: 65%;
padding: 44px 60px;
background: #ffffff 0% 0% no-repeat padding-box;
box-shadow: 0px 3px 6px #cfcccc80;
border: 1px solid #f5f5f5;
border-radius: 8px;
opacity: 1;
}
.form-head {
font: normal normal bold 28px/37px Roboto;
letter-spacing: 0px;
color: #0c3459d5;
text-transform: capitalize;
opacity: 1;
padding-bottom: 20px;
}
.row-content {
display: flex;
flex-direction: row;
margin-bottom: 10px;
align-items: center;
border: 0px solid green;
}
.label {
min-width: 140px;
}
label {
padding: 12px 12px 12px 0px;
display: inline-block;
}
.text {
font-size: 16px;
color: #080909;
opacity: 1;
font-family: Roboto;
}
.input {
width: 100%;
padding: 12px;
border: 1px solid rgb(52, 190, 217);
border-radius: 4px;
resize: vertical;
}
error-output{ /*Day 44 - UC2 */
margin-left: 10px;
font-style: italic;
font-size: 12px;
color: red;
}
/* UC 3 ::: Ability to specify the profile pic in the form */
.profile-radio-content {
display: flex;
flex-direction: row;
}
.profile-radio-content>label {
display: flex;
flex-direction: row;
align-items: center;
}
.profile {
width: 40px;
border-radius: 50%;
margin-left: 12px;
}
/* UC 5 ::: Ability to specify the start date with Day, Month and Year as select input items */
select {
padding: 12px;
border: 1px solid rgb(52, 190, 217);
border-radius: 4px;
margin-left: 60px;
resize: vertical;
font: normal normal normal 16px Roboto;
letter-spacing: 0px;
color: #090909;
background-color: transparent;
}
/* UC 6 ::: Ability to add the Notes and Button */
.buttonParent{
display: flex;
margin-bottom: 10px;
justify-content: space-between;
margin-top: 20px;
}
.button{
font-size: 20px;
font-family: Roboto;
letter-spacing: 0px;
color: #0d0d0e;
opacity: 1;
background: transparent;
border: none;
font-weight: 400;
min-width: 140px;
padding: 7px 7px;
border: 1px solid#539bee;
background-color: rgb(163, 208, 237);
cursor: pointer;
border-radius: 5px;
}
.submitButton {
border: 1px solid rgb(52, 190, 217);
margin-right: 30px;
}
.cancelButton {
margin-left: 140px;
text-decoration: none;
text-align: center;
border: 1px solid rgb(52, 190, 217);
}
/* UC 6 - Extn : Adding Media Queries*/
@media only screen and (max-width: 960px) {
.cancelButton {
margin-left: 0px;
}
.form {
width: 85%;
padding: 44px 20px;
}
}
@media only screen and (max-width: 600px) {
.form{
margin-top: 10px;
}
.row {
flex-direction: column;
}
.uploadButton {
justify-content: flex-start;
}
.profile-radio-content{
flex-flow: wrap;
}
.submit-reset{
width: 100%;
display: flex;
flex-grow: 1;
flex-direction: row-reverse;
justify-content: space-between;
margin-bottom: 20px;
}
.submitButton{
margin: 0;
}
.buttonParent{
flex-direction: column-reverse;
align-items: flex-start;
}
}