-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
64 lines (62 loc) · 1.16 KB
/
Copy pathstyle.css
File metadata and controls
64 lines (62 loc) · 1.16 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
body{
background-color: #87b4e4;
}
h2{
font-weight: 500;
}
.formBox{
background-color: #ffffff;
width: 500px;
height: 900px;
margin: auto;
border-radius: 10px;
border: 10px solid #5ea9fa;
}
.header{
text-align: center;
}
.file{
margin: 15px;
}
.formbody{
padding: 20px;
}
label{
margin: 8px;
}
input[type=text], input[type=number], input[type=email] {
width: 70%;
padding: 10px;
margin: 8px;
border: 1px solid #ccc;
border-radius: 4px;
}
input[type=text]:focus, input[type=number]:focus, input[type=email]:focus,
textarea:focus, input[type=date]:focus{
border: 2px solid #007bff;
}
textarea{
width: 70%;
height: 80px;
padding: 12px;
border: 1px solid #ccc;
border-radius: 4px;
background-color: #f8f8f8;
resize: none;
}
input[type=date]{
width: 70%;
border: 1px solid #ccc;
border-radius: 4px;
padding: 10px;
}
input[type=submit] {
width: 75%;
background-color: #007bff;
color: #ffffff;
padding: 14px;
margin: 8px;
border: none;
border-radius: 8px;
cursor: pointer;
}