"mobile"
Bootstrap 3.0.0 Snippet by evarevirus

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
<link href="//netdna.bootstrapcdn.com/bootstrap/3.0.0/css/bootstrap.min.css" rel="stylesheet" id="bootstrap-css">
<script src="//netdna.bootstrapcdn.com/bootstrap/3.0.0/js/bootstrap.min.js"></script>
<script src="//code.jquery.com/jquery-1.11.1.min.js"></script>
<!------ Include the above in your HEAD tag ---------->
<!-- https://dribbble.com/shots/2358349-Daily-Shmaily-UI-1-Game-Login -->
<div class="wrapper">
<div class="container">
<div class="stencil">
<div class="line">
<div class="line"></div>
</div>
</div>
<div class="border-triangle"></div>
<div class="content-triangle"></div>
<div class="enter-triangle-one"></div>
<div class="enter-triangle-two"></div>
<form onsubmit="return false" method="post" id="form">
<div class="title">
<label>LOG INTO</label>
<label>SYSTEM</label>
</div>
<div class="input-inform">
<input type="text" name="name" id="name" placeholder="LOGIN..." />
<input type="password" name="password" id="password" placeholder="PASSWORD..." />
<input type="button" value="FORGOT PASSWORD?" id="forgot-pas"/>
</div>
<div class="enter">
<label for="enter"></label>
<input type="submit" name="submit" value="ENTER" id="enter"/>
</div>
</form>
</div>
</div>
<script>
document.getElementById('enter').onclick = function() {
valid(document.getElementById('form'));
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
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
* {
box-sizing: border-box;
font-family: 'Open Sans', sans-serif;
}
body {
background: #dde3e8;
}
.wrapper,
.container {
height: 525px;
width: 337px;
}
.wrapper {
margin: auto;
position: absolute;
top: -10px; right: 0; bottom: 0; left: 0;
}
.container {
position: relative;
}
.container .stencil {
border: 5px solid #77dff9;
height: 440px;
width: 235px;
transform: matrix(0.85,0.8,-0.08,0.7,19,43);
position: absolute;
z-index: 1;
}
.container .stencil .line {
border: 3px solid #77dff9 ;
height: 94.6%;
margin: 11px 0;
border-right: none;
border-left: none;
}
.container .border-triangle {
position: absolute;
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
1
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

Related: See More


Questions / Comments: