-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathform.css
More file actions
57 lines (50 loc) · 1.02 KB
/
form.css
File metadata and controls
57 lines (50 loc) · 1.02 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
#textbox {
border: 2px solid #ccc;
font-family: DMSans, sans-serif;
font-size: 13pt;
color: #222;
line-height: 1.5;
border-radius: 13px;
width: 100%;
margin: 0px 0px;
padding: 13px;
resize: none;
background: none;
}
#textbox:focus {
outline-offset: 0px !important;
outline: none !important;
}
#textbox::placeholder {
color: black;
opacity: .2;
}
input[type="file"] {
padding: 10px;
background-color: 0046ff;
border: 1px solid gray;
border-radius: 5px;
color: white;
}
.extract-button1 {
margin-top: 21px;
padding: 13px 34px;
border: 0px solid #ccc;
background: #0046ff;
border-radius: 8px;
color: white;
font-size: 10pt;
text-transform: uppercase;
font-weight: bold;
letter-spacing: 1px;
transition: 0.3s;
}
.extract-button1:hover {
box-shadow: 0 16px 24px 0 rgba(0,0,0,.1);
}
input[type=submit] {
font-family: DMSans, sans-serif;
font-size: 13pt;
}
input[type=submit]:hover{background-color:rgb(68 149 241);}
input[type=submit]:focus{background-color:rgb(86 86 191);}