Ajax Loader
×
HTML
<form>
1
<form>
2
  <input type="text" placeholder="username" name="firstname"><br><br>
3
  <input type="password" name="lastname" placeholder="password" name="firstname"><br><br>
4
  <input type="submit" name="botao" value="Botao">
5
</form>
 
CSS
* {
1
* {
2
  border: none;
3
  margin: 0;
4
  padding: 0;
5
}
6
body {
7
  padding: 50px;
8
}
9
input[type=text], input[type=password] {
10
box-sizing: border-box;
11
background-color: #fff;
12
border: 1px solid #ddd;
13
color: #999;
14
cursor: text;
15
font-size: 12px;
16
height: auto;
17
margin: 0 0 0 0;
18
padding: 10px;
19
  width: 100%;
20
}
21
input[type=text]:focus, input[type=password]:focus {
22
  border-color: #F18120;
23
  outline-color: #F18120;
24
}
25
input[type=submit] {
26
-webkit-box-shadow: 0 1px 0 rgba(0,0,0,.1);
27
box-shadow: 0 1px 0 rgba(0,0,0,.1);
28
background-color: #fff;
29
background-image: -webkit-linear-gradient(top,transparent,transparent);
30
background-image: linear-gradient(top,transparent,transparent);
31
border: 1px solid #b8b8b8;
32
color: #404040;
33
  
34
  -webkit-border-radius: 2px;
35
border-radius: 2px;
36
cursor: default;
37
font-size: 12px;
38
font-weight: bold;
39
text-align: center;
40
white-space: nowrap;
41
margin-right: 16px;
42
height: 34px;
43
line-height: 34px;
44
min-width: 54px;
45
outline: 0;
46
padding: 0 14px;
47
}
48
 
49
 
 

Untitled

CSSDeck G+