-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlist.css
More file actions
102 lines (99 loc) · 1.69 KB
/
Copy pathlist.css
File metadata and controls
102 lines (99 loc) · 1.69 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
<style>
body{
padding-top: 60px;
padding-bottom: 40px;
}
.fixed-header, .fixed-footer{
width: 100%;
padding: 10px;
background-color: cornflowerblue;
}
.fixed-header{
top: 0;
}
.fixed-footer{
bottom: 0;
position: fixed;
}
.HeaderFooter{
width: 80%;
margin: auto;
}
#toggle {
position: relative;
left:30%;
}
#redirect{
background-color: navajowhite;
color: black;
cursor: pointer;
width: 12%;
}
#action , #get, #update {
position:relative;
background-color: blueviolet;
color: black;
cursor: pointer;
width: 20%;
left : 20%;
border-radius: 25px;
padding: 20px;
}
#delete{
position:relative;
background-color: red;
color: black;
cursor: pointer;
width: 20%;
left : 20%;
border-radius: 25px;
padding: 20px;
}
#getemployee {
background-color: white;
color: black;
padding: 18px;
margin:20px 60px;
border: bold;
cursor: pointer;
width: 10%%;
}
.content{
font-family: serif;
left: 20%;
top: 230px;
position: absolute;
}
.outset {
top: 150px;
border-style: outset;
background-color:antiquewhite;
border-radius: 25px;
}
.center {
margin-left:40% ;
margin-right: 25%;
width: 20%;
}
table, td, th {
border-bottom: 1px black;
text-align: center;
}
table {
border-collapse: collapse;
width: 100%;
border-radius: 25px;
background-color:lavenderblush;
}
th {
padding: 15px;
}
td {
padding: 10px;
}
@media only screen and (max-width: 600px) {
body {
text-align: left;
}
}
</style>