-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcustLFApproval.css
More file actions
121 lines (55 loc) · 1.51 KB
/
custLFApproval.css
File metadata and controls
121 lines (55 loc) · 1.51 KB
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
*{
box-sizing: border-box;
}
body{
margin: 0px;
font-family: Arial, Helvetica, sans-serif;
background-repeat: no-repeat;
background-size: cover;
}
.container{
justify-content: center;
height: 100%;
font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}
.h1{
text-align: center;
}
.from1{
font-size: 20px;
}
.btn-group{
display: flex;
align-items: center;
justify-content: center;
margin-top: 20px;
margin-bottom: 20px;
padding: 20px;
}
.btn-accept,.btn-reject,.btn-back{
font-size: 15px;
padding: 8px 12px;
border: none;
box-shadow:inset 2px 2px 3px rgba(148, 214, 192, 0.6),inset -2px -2px 3px rgba(0,0,0,0.6);
}
.btn-accept:hover{
cursor: pointer;
background-color: green;
}
.btn-reject:hover{
cursor: pointer;
background-color: red;
}
.btn-back:hover{
cursor: pointer;
}
.label{
margin: 10px;
font-size: 10px;
}
.from1>input{
width: 80%;
margin: 10px;
background-color:#d0e0fa;
padding: 10px;
}