-
Notifications
You must be signed in to change notification settings - Fork 1
/
style.css
110 lines (91 loc) · 1.85 KB
/
style.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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
body {
color: #fff;
font: 87.5%/1.5em 'Open Sans', sans-serif;
/* background:url(img/bg.jpg)no-repeat center center fixed; */
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;}
.form-wrapper {
width:300px;
height:329px;
position: absolute;
top: 50%;
left: 48%;
margin: -184px 0px 0px -155px;
background:black;
padding: 15px 25px;
border-radius: 5px;
box-shadow: 0px 1px 0px rgba(0,0,0,0.6),inset 0px 1px 0px rgba(255,255,255,0.04);
}
.form-item {
width:100%;
}
h3{
font-size: 25px;
font-weight: 640;
margin-bottom: 10px;
color: white;
padding:6px;
font-family:'sans-serif','helvetica';
}
.form-item input{
border: none;
background:transparent;
color: #fff;
margin-top:11px;
font-family: 'Open Sans', sans-serif;
font-size: 1.2em;
height: 49px;
padding: 0 16px;
width: 100%;
padding-left: 55px;
}
input[type='password']{
background: transparent url("img/pass.jpg") no-repeat;
background-position: 10px 50%;
}
input[type='text']{
background: transparent url("img/user.jpg") no-repeat;
background-position: 10px 50%;
}
.form-item input:focus {
outline: none;
border:1.4px solid #cfecf0;
}
.button-panel {
margin-bottom: 20px;
padding-top: 10px;
width: 100%;
}
.button-panel .button {
background: #00b6df;
border: none;
color: #fff;
cursor: pointer;
height: 50px;
font-family: 'helvetica','Open Sans', sans-serif;
font-size: 1.2em;
text-align: center;
text-transform: uppercase;
transition: background 0.6s linear;
width: 100%;
margin-top:10px;
}
.button:hover {
background: #6eb7cb;
}
.form-item input, .button-panel .button {
border-radius: 2px
}
/* .reminder {
text-align: center;
}
.reminder a {
color: #fff;
text-decoration: none;
transition: color 0.3s;
}
.reminder a:hover {
color: #cab6bf;
} */