-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathindex.css
86 lines (82 loc) · 1.64 KB
/
index.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
77
78
79
80
81
82
83
84
85
86
html,
body {
padding:0;
margin:0;
height: 100%;
}
#background{
background-image: url("b.jpg");
background-attachment: fixed;
background-size: cover;
background-position: center;
display: table;
height: 100%;
width: 100%;
}
#loginContainer * {
color: white;
font-family: "helvetica neue","helvetica", "Arial";
font-weight: normal;
line-height: 1em;
box-sizing: border-box;
}
#loginContainer {
width: 80%;
margin: 0 auto;
position: relative;
max-width: 1024px;
}
#inputContainer{
width: 400px;
padding:45px;
float: left;
border-right: 1px solid #999;
}
#inputContainer h2{
text-align: center;
}
::-webkit-input-placeholder { /* WebKit, Blink, Edge */
color: #fff;
}
:-moz-placeholder { /* Mozilla Firefox 4 to 18 */
color: #fff;
opacity: 1;
}
::-moz-placeholder { /* Mozilla Firefox 19+ */
color: #fff;
opacity: 1;
}
:-ms-input-placeholder { /* Internet Explorer 10-11 */
color: #fff;
}
::-ms-input-placeholder { /* Microsoft Edge */
color: #fff;
}
::placeholder { /* Most modern browsers support this now. */
color: #fff;
}
#inputContainer input[type="text"],
#inputContainer input[type="email"],
#inputContainer input[type="password"]{
display: block;
background-color: transparent;
border: 0;
border-bottom: 1px solid #fff;
height:27px;
width: 100%;
}
#inputContainer label{
color:#a0a0a0;
font-size:13px;
margin-top:15px;
}
#inputContainer button{
background-color: transparent;
border: 2px solid #fff;
border-radius:250px;
color:#fff;
letter-spacing: 1px;
margin: 40px auto;
height: 40px;
width: 100%;
}