-
Notifications
You must be signed in to change notification settings - Fork 2
/
button.css
76 lines (66 loc) · 1.43 KB
/
button.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
input[type=submit]{
background-color: #4CAF50;
-moz-border-radius: 5px;
-webkit-border-radius: 5px;
border-radius:6px;
background: #4CAF50;
font-family: 'Oswald';
font-size: 30px;
font-color: white;
color:white;
text-decoration: none;
cursor: pointer;
border:none;
width:100%;
height: 3em;
}
input[type=text]{
background-color:#ffffff;
-moz-border-radius: 5px;
-webkit-border-radius: 5px;
border-radius:6px;
background: #ffffff;
font-family: 'Oswald';
font-size: 20px;
font-color: #00000;
text-decoration: none;
cursor: pointer;
border:2px solid #ccc;
width: 20em;
height: 3em;
}
input[type=password]{
background-color: #ffffff;
-moz-border-radius: 5px;
-webkit-border-radius: 5px;
border-radius:6px;
background: #ffffff;
font-family: 'Oswald';
font-size: 20px;
font-color: #00000;
text-decoration: none;
cursor: pointer;
border:2px solid #ccc;
width: 20em;
height: 3em;
}
input[type=submit]:hover{
border: none;
background:#4CAF50;
box-shadow: 0px 0px 1px #777;
height: 3em;
color:white;
}
input, textarea {
max-width:100%
}
@media screen and (min-width: 100px) and (max-width: 199px){
.button{
width: 25px;
}
}
@media screen and (min-width: 200px) and (max-width: 299px){
.button{
width: 50px;
}
}