-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathform.css
More file actions
108 lines (105 loc) · 1.88 KB
/
Copy pathform.css
File metadata and controls
108 lines (105 loc) · 1.88 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
<style>
body{
padding-top: 60px;
padding-bottom: 40px;
}
.fixed-header, .fixed-footer{
width: 100%;
background: cornflowerblue;
padding: 10px ;
}
.fixed-header{
top: 0;
}
.fixed-footer{
bottom: 0;
position: fixed;
}
.HeaderFooter{
width: 80%;
margin: auto;
}
#toggle {
position: relative;
left:35%;
}
#redirect{
background-color: navajowhite;
color: black;
cursor: pointer;
width: 10%;
}
.outset {
position : relative;
border-style: outset;
background-color: snow;
text-align: center;
}
#form {
left: 25%;
right: 25%;
position: absolute;
}
input[type=text], input[type=password], input[type=number] {
width: 50%;
padding: 15px;
margin: 5px 0 22px 0;
display: inline-block;
border: none;
}
input[type=text]:focus, input[type=password]:focus ,input[type=number]:focus{
background-color: #ddd;
outline: bold;
}
#save {
background-color: green;
color: black;
padding: 18px;
margin: 16px 0;
border: bold;
cursor: pointer;
width: 30%;
}
#update, #create {
background-color: lightpink;
color: black;
position: relative;
padding: 18px;
margin: 16px 0;
border: bold;
cursor: pointer;
width: 20%;
left:30%;
}
#saveupdate {
background-color: lawngreen;
color: black;
padding: 18px;
margin: 16px 0;
border: bold;
cursor: pointer;
width: 30%;
}
#cancelbutton {
background-color: red;
color: black;
padding: 18px;
margin: 16px 0;
border: bold;
cursor: pointer;
width: 30%;
}
.center {
margin-left:40% ;
margin-right: 25%;
width: 20%;
}
@media only screen and (max-width: 768px) {
body {
text-align: center;
}
.clear{
height: auto;
}
}
</style>