-
Notifications
You must be signed in to change notification settings - Fork 0
/
timesheet.css
203 lines (184 loc) · 3.21 KB
/
timesheet.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
/* Bordered form */
form {
border: 3px solid #f1f1f1;
}
h1 {
margin-bottom: 0px;
}
.bordered {
border: 3px solid #f1f1f1;
margin-block-end: 1em;
}
.tg {
border-collapse:collapse;
border-spacing:0;
}
.tg td{
border-color:black;
border-style:solid;
border-width:1px;
font-size:14px;
overflow:hidden;
/* padding:10px 5px; */
word-break:normal;
}
.tg th{
border-color:black;
border-style:solid;
border-width:1px;
font-family:Arial, sans-serif;
font-size:14px;
font-weight:normal;
overflow:hidden;
/* padding:10px 5px; */
word-break:normal;
}
.tg .tg-266k{
background-color:#9b9b9b;
border-color:inherit;
text-align:left;
vertical-align:top
}
.tg .tg-7od5{
background-color:#9aff99;
border-color:inherit;
text-align:left;
vertical-align:top
}
.tg .tg-ncd7{
background-color:#ffffc7;
border-color:inherit;
text-align:left;
vertical-align:top
}
.tg .tg-0lax{
text-align:left;
vertical-align:top
}
.tg .tg-c3ow{
border-color:inherit;
text-align:center;
vertical-align:top
}
.tg .tg-c66k{
background-color:#9b9b9b;
border-color:inherit;
text-align:center;
vertical-align:top
}
.input-time {
width: 5em;
padding: 0px 0px;
margin: 0px 0px;
}
/* Full-width inputs */
input[type=text], input[type=password] {
/* width: 100%;
padding: 12px 20px;
margin: 8px 0; */
padding: 2px 2px;
margin: 4px 4px;
display: inline-block;
border: 1px solid #ccc;
box-sizing: border-box;
}
.logininput {
width: 100%;
padding: 12px 20px;
margin: 8px 0;
}
input[type=button], input[type=submit], input[type=reset] {
background-color: #4CAF50;
border: none;
color: white;
padding: 16px 32px;
text-decoration: none;
margin: 4px 2px;
cursor: pointer;
min-width: 200px;
}
input[type=button].little {
padding: 4px 4px;
margin: 0px 0px;
min-width: 0px;
}
input[type=submit].menubar{
padding: 4px 4px;
margin: 8px 16px;
min-width: 180px;
position: absolute;
top: 5px;
}
#home {
left: 0px;
}
#save {
right: 400px;
}
#submit, #approve {
right: 210px;
}
#logout {
right: 20px;
}
input[type=button]:disabled, input[type=submit]:disabled, input[type=reset]:disabled {
background-color: grey;
cursor: not-allowed;
}
/* Set a style for all buttons */
button {
background-color: #4CAF50;
color: white;
padding: 14px 20px;
margin: 8px 0;
border: none;
cursor: pointer;
width: 100%;
}
/* Add a hover effect for buttons */
button:hover {
opacity: 0.8;
}
/* Extra style for the cancel button (red) */
.timesheet {
margin: auto;
text-align: center;
width: 50%;
padding: 10px 18px;
}
#loginerror {
margin: auto;
text-align: center;
width: 50%;
padding: 10px 18px;
background-color: #f44336;
}
/* Center the avatar image inside this container */
.imgcontainer {
text-align: center;
margin: 24px 0 12px 0;
}
/* Avatar image */
img.avatar {
width: 40%;
border-radius: 50%;
}
/* Add padding to containers */
.container {
padding: 16px;
}
/* The "Forgot password" text */
span.psw {
float: right;
padding-top: 16px;
}
/* Change styles for span and cancel button on extra small screens */
@media screen and (max-width: 300px) {
span.psw {
display: block;
float: none;
}
.cancelbtn {
width: 100%;
}
}