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
|
/* Inputfield style */
input[type=text], input[type=password], input[type=number], input[type=email], input[type=month], input[type=search], input[type=tel], input[type=time], input[type=url], input[type=week], textarea
{
padding: 0.1rem 1rem;
margin: 0rem 0.3rem;
box-sizing: border-box;
background-color: var(--bg-color);
color: var(--text-color);
border: 2px solid var(--title-color);
}
input[type=button], input[type=submit], input[type=reset], input[type=date], input[type=file], input[type=datetime-local], input[type=image]
{
padding: 0.1rem 1rem;
margin: 0rem 0.3rem;
cursor: pointer;
text-align: center;
text-decoration: none;
text-transform: uppercase;
font-weight: bold;
background-color: var(--link-bg-color);
color: var(--link-color);
border: 1px solid var(--link-bg-color);
}
input[type=button]:hover, input[type=submit]:hover, input[type=reset]:hover, input[type=date]:hover, input[type=datetime-local]:hover
{
color: var(--link-bg-color);
background-color: var(--link-color);
}
input[type="file"]::file-selector-button
{
text-align: center;
text-decoration: none;
text-transform: uppercase;
font-weight: bold;
color: var(--link-bg-color);
background-color: var(--link-color);
border: 1px solid var(--link-color);
}
input[type=color]
{
cursor: pointer;
background-color: var(--link-bg-color);
border: 1px solid var(--link-bg-color);
}
|