JSDM

HTML

 
1
<form>
2
    <h1>Login or Register</h1>
3
    <p>
4
        <label for="login">Username or email</label>
5
        <input type="text" name="login" id="login" placeholder="john.doe@gmail.com" autocomplete="off" required>
6
    </p>
7
    <p>
8
        <label for="password">Password</label>
9
        <input type="password" name='password' id="password" placeholder="The longer the better" required> 
10
    </p>
11
 
12
    <p>
13
      <button type="button">Continue</button>
14
    </p>       
15
</form>
!

CSS

x
 
1
html {
2
  box-sizing: border-box;
3
}
4
5
* {
6
  box-sizing: inherit;
7
}
8
9
form {
10
  border: .5em solid lighten(deepskyblue, 30%);
11
  border-radius: .2em;
12
  max-width: 400px;
13
  margin: 3em auto;
14
  padding: 1em;
15
}
16
17
h1 {
18
  font-size: 2em;
19
  margin-top: 0;
20
}
21
22
label {
23
  display: block;
24
  margin-bottom: .5em;
25
  cursor: pointer;
26
}
27
28
input[type="text"],
29
input[type="password"] {
30
  display: block;
31
  width: 100%;
32
  padding: .5em;
33
  transition: .5s ease-out; 
34
35
  // Thanks to Fabrizio Calderan for improving the effect
36
  &:focus {
37
    transform: scale(1.75);
38
    outline: 100em solid rgba(black, .75);
39
  }
40
}
41
42
button {
43
  display: block;
44
  border: none;
45
  padding: 1em;
46
  width: 100%;
47
  font-weight: bold;
48
  color: white;
49
  background: deepskyblue;
50
  text-transform: uppercase;
51
  font-size: .8em;
52
  transition: .15s ease-out;
53
  
54
  &:hover {
55
    background: #888;
56
  }
57
}
58
59
p:last-of-type {
60
  margin-bottom: 0;
61
}
!
? ?
? ?
必须是有效的URL
+ 添加另一个资源

JS

xxxxxxxxxx
1
 
1
  
!
必须是有效的URL
+ 添加另一个资源
Close

文件管理 点击文件查看URL

图片

  1. 暂无文件

CSS

  1. 暂无文件

JavaScript

  1. 暂无文件

其他

  1. 暂无文件
拖动文件到上面的区域或者:
加载中 ..................