-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
79 lines (64 loc) · 1.02 KB
/
style.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
* {
background-color: #aca7ca;
}
body {
padding: 50px;
}
.container {
width: 40%;
margin: auto;
}
fieldset {
text-shadow: -2px -3px 4px;
border-radius: 10px;
box-shadow: -0px 7px 4px;
}
input,
textarea {
display: block;
width: 65%;
margin: auto;
border-width: 0px 0px 2px 0px;
padding: 10px;
border-color: #f5edc0;
color: #ffe4c4;
margin-top: 20px;
}
textarea {
margin-bottom: 15px;
outline: 0px;
}
::placeholder {
color: #0000ff;
}
input:focus {
/* border: 0px; */
outline: 0px;
border-color: #f35d0d;
}
input:focus::placeholder {
color: #ff0000;
font-size: 1.2em;
/* padding-left: -30px; */
}
.Submit {
background-color: #977f92;
color: #f0ffff;
}
.Submit:hover {
background-color: #008000;
}
.Cancel {
color: #f0ffff;
background-color: #977f92;
}
.Cancel:hover {
background-color: #ff0000;
}
button {
/* margin: 30px; */
margin: auto;
width: 48%;
height: 25px;
border-radius: 10px;
}